mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 17:26:15 -04:00
feat(new tool): phone parser and normalizer
This commit is contained in:
parent
3f6c8f0edd
commit
ce3150c65d
10 changed files with 357 additions and 140 deletions
|
@ -0,0 +1,11 @@
|
|||
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');
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue