-
Notifications
You must be signed in to change notification settings - Fork 0
/
codecept.conf.js
41 lines (41 loc) · 1.06 KB
/
codecept.conf.js
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
exports.config = {
tests: './tests/**/*.js',
timeout: 10000,
output: './output',
require: ['import-export', 'chai/register-expect'],
helpers: {
Puppeteer: {
url: 'https://www.ag-grid.com/example.php#/',
restart: false,
keepBrowserState: true,
keepCookies: true,
fullPageScreenshots: true,
show: true,
windowSize: '3060x1600',
waitForNavigation: ['networkidle2', 'domcontentloaded'],
waitForAction: 1000,
chrome: {
args: ['--no-sandbox', '--lang=de', '--window-size=2000,1000'],
defaultViewport: {
width: 2000,
height: 800,
},
},
},
},
name: 'mcmakler-ui-tests',
multiple: {
parallel: {
chunks: 6,
},
},
plugins: {
allure: {
outputDir: './allureReport',
enabled: true,
},
autoDelay: {
enabled: false,
},
},
};