-
Notifications
You must be signed in to change notification settings - Fork 5
/
dullahan.config.ts
56 lines (55 loc) · 1.87 KB
/
dullahan.config.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
51
52
53
54
55
56
const {
BROWSERSTACK_USERNAME,
BROWSERSTACK_ACCESS_KEY
} = process.env;
export default {
runner: [
'@k2g/dullahan-runner-standard', {
rootDirectories: ['./__tests__/env_dullahan'],
includeRegexes: [/\.ts$/i],
excludeRegexes: [],
includeGlobs: [],
excludeGlobs: [],
minSuccesses: 1,
maxAttempts: 1,
maxConcurrency: 1
}
],
adapter: [
'@k2g/dullahan-adapter-selenium-4', {
headless: false,
maximizeWindow: true,
browserName: 'chrome',
requireDriver: 'chromedriver',
//seleniumRemoteUrl: 'https://hub-cloud.browserstack.com/wd/hub',
/*rawCapabilities: {
os: 'Windows',
os_version: '10',
browserName: 'Chrome',
browser_version: '81.0',
project: 'DullahanStephan',
build: `Stephan Test`,
resolution: '1920x1080',
'browserstack.local': 'false',
'browserstack.console': 'verbose',
'browserstack.networkLogs': 'true',
'browserstack.timezone': 'Europe/Amsterdam',
'browserstack.selenium_version': '4.0.0-alpha-2',
'browserstack.chrome.driver': '81.0.4044.69',
'browserstack.user': BROWSERSTACK_USERNAME,
'browserstack.key': BROWSERSTACK_ACCESS_KEY,
}*/
}
],
plugins: [
//'@k2g/dullahan-plugin-github',
//'@k2g/dullahan-plugin-xvfb',
'@k2g/dullahan-plugin-report-json',
'@k2g/dullahan-plugin-report-html',
'@k2g/dullahan-plugin-report-markdown',
//'@k2g/dullahan-plugin-browserstack',
/*['@k2g/dullahan-plugin-aws-s3', {
bucketName: 'dullahan-artifacts-test'
}]*/
]
};