mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-08 07:11:03 -04:00
refactor: 🎨 Lint checks
This commit is contained in:
parent
94eb67b4ab
commit
808f56e011
1 changed files with 4 additions and 4 deletions
|
@ -1,12 +1,12 @@
|
||||||
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 }) => {
|
test.beforeEach(async ({ page }) => {
|
||||||
await page.goto('/uuid-converter');
|
await page.goto('/uuid-converter');
|
||||||
});
|
});
|
||||||
|
|
||||||
test('Has correct title', async ({ page }) => {
|
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 }) => {
|
test('', async ({ page }) => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue