mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 17:26:15 -04:00
12 lines
345 B
TypeScript
12 lines
345 B
TypeScript
![]() |
import { test, expect } from '@playwright/test';
|
||
|
|
||
|
test.describe('Tool - Phone parser and formatter', () => {
|
||
|
test.beforeEach(async ({ page }) => {
|
||
|
await page.goto('/phone-parser-and-formatter');
|
||
|
});
|
||
|
|
||
|
test('Has correct title', async ({ page }) => {
|
||
|
await expect(page).toHaveTitle('Phone parser and formatter - IT Tools');
|
||
|
});
|
||
|
});
|