diff options
author | 2023-04-14 01:20:47 +0200 | |
---|---|---|
committer | 2023-04-14 09:04:49 +0200 | |
commit | 8355bd2ae48954115d132dd42a40b1d3de1d9b2e (patch) | |
tree | a903f4560dcef8dcad351df61b05dd9f0a0d0c6e /src/tools/http-status-codes/http-status-codes.e2e.spec.ts | |
parent | 6fb49946031dc093499e826bc228dbbff97e2db9 (diff) | |
download | it-tools-8355bd2ae48954115d132dd42a40b1d3de1d9b2e.tar.gz it-tools-8355bd2ae48954115d132dd42a40b1d3de1d9b2e.tar.zst it-tools-8355bd2ae48954115d132dd42a40b1d3de1d9b2e.zip |
feat(new-tool): http status codes
Diffstat (limited to 'src/tools/http-status-codes/http-status-codes.e2e.spec.ts')
-rw-r--r-- | src/tools/http-status-codes/http-status-codes.e2e.spec.ts | 11 |
1 files changed, 11 insertions, 0 deletions
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'); + }); +}); |