-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
65 lines (52 loc) · 1.72 KB
/
config.yml
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
57
58
59
60
61
62
63
64
65
jest:
# amount of tests to run in parallel
maxConcurrency: 5
# set default timeout based on docblock "@group"
# will pick the largest timeout if a test belongs to multiple groups
# check the supported format from the link below
# https://github.com/jkroso/parse-duration#parsestr-formatms
timeoutGroup:
# default is >= 5s
default: 5s
# e.g. @group selenium
selenium: 2mins
selenium:
# browser type: 'chrome' | 'edge' | 'firefox'
browser: chrome
# webDriver should be recycled for: 'run' | 'test'
# run -> webDriver will be recreated for every "describe" block
# test -> webDriver will be recreated for every "test" block
#
# Note:
# this is a global setting. to specify a "test" scope setting,
# follow the readme example to create a docblock
webDriverCycle: run
# specify where selenium should pick up the webdrivers if you don't want to
# use the automatic downloaded webDrivers
webDriversDir: ""
# run tests in Browser headless mode
headless: false
chrome:
# match the automatic downloaded chromeDriver version to your Chrome browser version
fixChromeDriverVersion: false
edge:
# set true to download the edgeDriver if not found from a designated place
downloadEdgeDriver: false
# match the automatic downloaded edgeDriver version to your Edge browser version
resolveEdgeDriverVersion: false
window:
# set webDriver to maximize browser by default
# if equals to true, 'width' and 'height' below won't take effect
defaultMaximize: false
# default browser width
width: 1920
# default browser height
height: 1080
platform:
schema: https
host: google.ca
port: 443
auth:
schema: https
host: youtube.ca
port: 443