16 lines
350 B
TypeScript
16 lines
350 B
TypeScript
import { expect, test } from '@playwright/test';
|
|
|
|
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');
|
|
});
|
|
|
|
test('', async ({ page }) => {
|
|
|
|
});
|
|
});
|