refactor: 🎨 Lint checks

This commit is contained in:
aSeyfarth 2023-11-09 18:01:34 +01:00
parent 94eb67b4ab
commit 808f56e011

View file

@ -1,15 +1,15 @@
import { test, expect } from '@playwright/test';
import { expect, test } from '@playwright/test';
test.describe('Tool - Uuid converter', () => {
test.describe('Tool - UUID converter', () => {
test.beforeEach(async ({ page }) => {
await page.goto('/uuid-converter');
});
test('Has correct title', async ({ page }) => {
await expect(page).toHaveTitle('Uuid converter - IT Tools');
await expect(page).toHaveTitle('UUID converter - IT Tools');
});
test('', async ({ page }) => {
});
});
});