Skip to content

Commit

Permalink
Remove trailing slash from domains for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Jan 7, 2025
1 parent b9416e1 commit 90b3c98
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ jobs:
- name: Test
uses: ./.github/actions/test
with:
domain: https://www.nationalarchives.gov.uk/
domain: https://www.nationalarchives.gov.uk
2 changes: 1 addition & 1 deletion .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ jobs:
- name: Test
uses: ./.github/actions/test
with:
domain: https://staging-www.nationalarchives.gov.uk/
domain: https://staging-www.nationalarchives.gov.uk
2 changes: 1 addition & 1 deletion test/tests/cookies.spec.ts.TEMP
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 90b3c98

Please # to comment.