mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 09:16:15 -04:00
15 lines
No EOL
355 B
TypeScript
15 lines
No EOL
355 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
test.describe('Tool - Border generator', () => {
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.goto('/border-generator');
|
|
});
|
|
|
|
test('Has correct title', async ({ page }) => {
|
|
await expect(page).toHaveTitle('Border generator - IT Tools');
|
|
});
|
|
|
|
test('', async ({ page }) => {
|
|
|
|
});
|
|
}); |