blob: cf6eae9d21d03c731d04b7efcc1eaca471e603d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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');
});
});
|