-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmaster.ts
50 lines (47 loc) · 1.24 KB
/
master.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import {IAutomationConfig} from "../src/configurationManager/IAutomationConfig";
const masterConfig: IAutomationConfig = {
externalParams: {},
passwords: {
fallbackToPreDecrypted: true,
decryptionKeyEnvVariable: 'AUTOMATION_INFRA_PASSWORDS_KEY'
},
utils: {
email: {
enabled: true,
user: '[email protected]',
host: 'imap.gmail.com',
port: 993,
tls: true,
authTimeout: 3000
},
performance: {
generateForTags: ['@debug', '@performance', '@load']
},
debug: {
warnOnCodeEval: true
}
},
testEnvironment: {
behaviour: {
revertEntityChanges: true,
timeouts: {
sampleCreation: 1000 * 60 * 120,
http: 90000
}
},
metaWeather: {
baseURL: 'https://www.metaweather.com/api'
},
jsonPlaceholder: {
baseURL: 'https://jsonplaceholder.typicode.com'
}
},
logic: {
allowDefaultFieldMutator: true,
testCaseOrder: {
beginWithTag: '@setup',
endWithTag: '@teardown'
}
}
};
export default masterConfig;