forked from hmcts/cmc-ccd-e2e-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
env.d.ts
36 lines (35 loc) · 981 Bytes
/
env.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
declare global {
namespace NodeJS {
interface ProcessEnv {
ENVIRONMENT: string
CITIZEN_APP_URL: string,
EXUI_URL: string,
SERVICE_AUTH_PROVIDER_API_BASE_URL: string,
CCD_DATA_STORE_URL: string,
DM_STORE_URL: string,
IDAM_API_URL: string,
IDAM_WEB_URL: string
CLAIM_STORE_URL: string,
LA_USER_EMAIL: string,
LA_USER_ID: string,
LA_USER_PASSWORD: string,
CW_USER_EMAIL: string,
CW_USER_ID: string,
CW_USER_PASSWORD: string,
JUDGE_USER_EMAIL: string,
JUDGE_USER_ID: string,
JUDGE_USER_PASSWORD: string,
SMOKE_TEST_USER_PASSWORD: string,
SHOW_BROWSER_WINDOW: string,
WORKERS:string,
SKIP_AUTH_SETUP: string,
SKIP_CITIZEN_SETUP: string,
UI_SOFT_EXPECT: string,
IDAM_STUB_ENABLED: string,
RUN_ACCESSIBILITY_TESTS: string,
S2S_MICROSERVICE_KEY_CMC: string,
S2S_MICROSERVICE_KEY_PWD: string,
}
}
}
export {};