mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 01:06:15 -04:00
11 lines
318 B
TypeScript
11 lines
318 B
TypeScript
import { expect, test } from '@playwright/test';
|
|
|
|
test.describe('Tool - Http status codes', () => {
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.goto('/http-status-codes');
|
|
});
|
|
|
|
test('Has correct title', async ({ page }) => {
|
|
await expect(page).toHaveTitle('HTTP status codes - IT Tools');
|
|
});
|
|
});
|