From 8355bd2ae48954115d132dd42a40b1d3de1d9b2e Mon Sep 17 00:00:00 2001 From: Corentin Thomasset Date: Fri, 14 Apr 2023 01:20:47 +0200 Subject: feat(new-tool): http status codes --- src/tools/http-status-codes/http-status-codes.e2e.spec.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/tools/http-status-codes/http-status-codes.e2e.spec.ts (limited to 'src/tools/http-status-codes/http-status-codes.e2e.spec.ts') diff --git a/src/tools/http-status-codes/http-status-codes.e2e.spec.ts b/src/tools/http-status-codes/http-status-codes.e2e.spec.ts new file mode 100644 index 0000000..59979cd --- /dev/null +++ b/src/tools/http-status-codes/http-status-codes.e2e.spec.ts @@ -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'); + }); +}); -- cgit v1.2.3