mirror of
https://github.com/CorentinTh/it-tools.git
synced 2026-03-28 08:20:43 +00:00
* #521 Random MAC address generator * refactor(mac-address-generator): improved ux * refactor(mac-address-generator): improved ux --------- Co-authored-by: Corentin THOMASSET <corentin.thomasset74@gmail.com>
12 lines
330 B
TypeScript
12 lines
330 B
TypeScript
import { expect, test } from '@playwright/test';
|
|
|
|
test.describe('Tool - MAC address generator', () => {
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.goto('/mac-address-generator');
|
|
});
|
|
|
|
test('Has correct title', async ({ page }) => {
|
|
await expect(page).toHaveTitle('MAC address generator - IT Tools');
|
|
});
|
|
});
|