aboutsummaryrefslogtreecommitdiff
path: root/src/tools/http-status-codes/http-status-codes.e2e.spec.ts
blob: 59979cd287af6ba0269a7048cc3c864f1295005a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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');
  });
});