From 3b154dfb2a589444dc7fdb393a946512f988f981 Mon Sep 17 00:00:00 2001 From: Daniel Clarke Date: Thu, 7 Nov 2024 14:59:39 +0000 Subject: [PATCH] test --- .../playwright/tests/smoke-tests.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Dfe.EarlyYearsQualification.SmokeTests/playwright/tests/smoke-tests.spec.ts b/tests/Dfe.EarlyYearsQualification.SmokeTests/playwright/tests/smoke-tests.spec.ts index f3e7de4d..4f1fadbd 100644 --- a/tests/Dfe.EarlyYearsQualification.SmokeTests/playwright/tests/smoke-tests.spec.ts +++ b/tests/Dfe.EarlyYearsQualification.SmokeTests/playwright/tests/smoke-tests.spec.ts @@ -5,7 +5,7 @@ test.describe("A spec used to smoke test the environment once a deployment has h await context.addCookies([ { name: 'auth-secret', value: process.env.AUTH_SECRET, path: '/', domain: 'localhost' } ]); - await page.goto(process.env.WEBAPP_URL + "/"); + await page.goto(process.env.WEBAPP_URL); await expect(page.getByTestId("start-button")).toBeVisible(); });