mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 16:26:15 -04:00
feat(new-tool): http status codes
This commit is contained in:
parent
6fb4994603
commit
8355bd2ae4
6 changed files with 525 additions and 0 deletions
11
src/tools/http-status-codes/http-status-codes.e2e.spec.ts
Normal file
11
src/tools/http-status-codes/http-status-codes.e2e.spec.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
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');
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue