mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-24 02:02:35 -04:00
12 lines
318 B
TypeScript
12 lines
318 B
TypeScript
import { test, expect } 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');
|
|
});
|
|
});
|