aboutsummaryrefslogtreecommitdiff
path: root/src/tools/http-status-codes/http-status-codes.e2e.spec.ts
diff options
context:
space:
mode:
authorGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2023-04-14 01:20:47 +0200
committerGravatar Corentin THOMASSET <corentin.thomasset74@gmail.com> 2023-04-14 09:04:49 +0200
commit8355bd2ae48954115d132dd42a40b1d3de1d9b2e (patch)
treea903f4560dcef8dcad351df61b05dd9f0a0d0c6e /src/tools/http-status-codes/http-status-codes.e2e.spec.ts
parent6fb49946031dc093499e826bc228dbbff97e2db9 (diff)
downloadit-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.ts11
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');
+ });
+});