it-tools/src/tools/http-status-codes/http-status-codes.e2e.spec.ts

12 lines
318 B
TypeScript
Raw Normal View History

2023-04-14 01:20:47 +02:00
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');
});
});