mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 17:26:15 -04:00
15 lines
355 B
TypeScript
15 lines
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 }) => {
|
||
|
|
||
|
});
|
||
|
});
|