From 90b3c98463a63d39e8aa4532b47dfc7876c05223 Mon Sep 17 00:00:00 2001 From: Andrew Hosgood Date: Tue, 7 Jan 2025 17:39:36 +0000 Subject: [PATCH] Remove trailing slash from domains for testing --- .github/workflows/deploy-develop.yml | 2 +- .github/workflows/deploy-production.yml | 2 +- .github/workflows/deploy-staging.yml | 2 +- test/tests/cookies.spec.ts.TEMP | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-develop.yml b/.github/workflows/deploy-develop.yml index 13b8932..b2f37ee 100644 --- a/.github/workflows/deploy-develop.yml +++ b/.github/workflows/deploy-develop.yml @@ -31,4 +31,4 @@ jobs: - name: Test uses: ./.github/actions/test with: - domain: https://dev-www.nationalarchives.gov.uk/ + domain: https://dev-www.nationalarchives.gov.uk diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index 9e7e2ce..e3504f5 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -53,4 +53,4 @@ jobs: - name: Test uses: ./.github/actions/test with: - domain: https://www.nationalarchives.gov.uk/ \ No newline at end of file + domain: https://www.nationalarchives.gov.uk \ No newline at end of file diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml index 51ea1cf..e377943 100644 --- a/.github/workflows/deploy-staging.yml +++ b/.github/workflows/deploy-staging.yml @@ -60,4 +60,4 @@ jobs: - name: Test uses: ./.github/actions/test with: - domain: https://staging-www.nationalarchives.gov.uk/ \ No newline at end of file + domain: https://staging-www.nationalarchives.gov.uk \ No newline at end of file diff --git a/test/tests/cookies.spec.ts.TEMP b/test/tests/cookies.spec.ts.TEMP index cd4cda2..402629b 100644 --- a/test/tests/cookies.spec.ts.TEMP +++ b/test/tests/cookies.spec.ts.TEMP @@ -6,7 +6,7 @@ const createCookie: (name: string, value: string) => Cookie = ( ) => ({ name, value, - domain: ".dblclk.dev", + domain: ".nationalarchives.gov.uk", path: "/", expires: Date.now() / 1000 + 60000, httpOnly: false,