Skip to content

Commit b80e618

Browse files
VIA-598 AJ/DB Change timeout of contract tests
1 parent f1bf0ed commit b80e618

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/cicd-9-scheduled-wip.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
secret_aws_slack_channel_id: ${{ secrets.ALARMS_SLACK_CHANNEL_ID }}
5555

5656
- name: "Run contract tests (sandpit+mocked)"
57-
timeout-minutes: 10
57+
timeout-minutes: 3
5858
uses: ./.github/actions/run-contract-tests
5959
with:
6060
target_ref: ${{ steps.get-latest-tag-name.outputs.value }}
@@ -119,7 +119,7 @@ jobs:
119119
secret_aws_slack_channel_id: ${{ secrets.ALARMS_SLACK_CHANNEL_ID }}
120120

121121
- name: "Run contract tests (sandpit+mocked)"
122-
timeout-minutes: 10
122+
timeout-minutes: 3
123123
uses: ./.github/actions/run-contract-tests
124124
with:
125125
target_ref: ${{ steps.get-latest-tag-name.outputs.value }}

src/utils/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ type AppConfig = {
77
CONTENT_API_KEY: string;
88
ELIGIBILITY_API_KEY: string;
99
NHS_LOGIN_PRIVATE_KEY: string;
10+
AUTH_SECRET: string;
1011

1112
// Environment Variables in Lambda
1213
CONTENT_API_ENDPOINT: URL;
@@ -20,7 +21,6 @@ type AppConfig = {
2021
MAX_SESSION_AGE_MINUTES: number;
2122
NHS_APP_REDIRECT_LOGIN_URL: string;
2223
IS_APIM_AUTH_ENABLED: boolean;
23-
AUTH_SECRET: string;
2424
};
2525

2626
type AppConfigCache = {

0 commit comments

Comments
 (0)