feat(new tool): phone parser and normalizer

This commit is contained in:
Corentin Thomasset 2023-05-01 16:43:45 +02:00 committed by Corentin THOMASSET
parent 3f6c8f0edd
commit ce3150c65d
10 changed files with 357 additions and 140 deletions

View file

@ -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');
});
});