forked from hmcts/civil-ccd-definition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsaucelabs.conf.js
127 lines (121 loc) · 3.25 KB
/
saucelabs.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* eslint-disable no-console */
const supportedBrowsers = require('./e2e/crossbrowser/supportedBrowsers.js');
const testConfig = require('./e2e/config');
const waitForTimeout = parseInt(process.env.WAIT_FOR_TIMEOUT_MS) || 45000;
const smartWait = parseInt(process.env.SMART_WAIT) || 30000;
const browser = process.env.SAUCELABS_BROWSER || 'chrome';
const defaultSauceOptions = {
username: process.env.SAUCE_USERNAME,
accessKey: process.env.SAUCE_ACCESS_KEY,
tunnelIdentifier: process.env.TUNNEL_IDENTIFIER || 'reformtunnel',
acceptSslCerts: true,
windowSize: '1600x900',
tags: ['Civil'],
};
function merge(intoObject, fromObject) {
return Object.assign({}, intoObject, fromObject);
}
function getBrowserConfig(browserGroup) {
const browserConfig = [];
for (const candidateBrowser in supportedBrowsers[browserGroup]) {
if (candidateBrowser) {
const candidateCapabilities = supportedBrowsers[browserGroup][candidateBrowser];
candidateCapabilities['sauce:options'] = merge(
defaultSauceOptions, candidateCapabilities['sauce:options']
);
browserConfig.push({
browser: candidateCapabilities.browserName,
capabilities: candidateCapabilities,
});
} else {
console.error('ERROR: supportedBrowsers.js is empty or incorrectly defined');
}
}
return browserConfig;
}
const setupConfig = {
tests: './e2e/tests/*_test.js',
output: `${process.cwd()}/${testConfig.TestOutputDir}`,
helpers: {
WebDriver: {
url: testConfig.url.manageCase,
browser,
smartWait,
waitForTimeout,
cssSelectorsEnabled: 'true',
host: 'ondemand.eu-central-1.saucelabs.com',
port: 80,
region: 'eu',
capabilities: {},
},
BrowserHelpers: {
require: './e2e/helpers/browser_helper.js',
},
GenerateReportHelper: {
require: './e2e/helpers/generate_report_helper.js'
},
SauceLabsReportingHelper: {
require: './e2e/helpers/sauce_labs_reporting_helper.js',
},
},
plugins: {
retryFailedStep: {
enabled: true,
retries: 2,
},
autoDelay: {
enabled: true,
methods: [
'click',
'fillField',
'checkOption',
'selectOption',
'attachFile',
],
delayAfter: 2000,
},
},
include: {
I: './e2e/steps_file.js',
api: './e2e/api/steps.js'
},
mocha: {
reporterOptions: {
'codeceptjs-cli-reporter': {
stdout: '-',
options: {
steps: true
},
},
'mocha-junit-reporter': {
stdout: '-',
options: {mochaFile: `${testConfig.TestOutputDir}/result.xml`},
},
mochawesome: {
stdout: testConfig.TestOutputDir + '/console.log',
options: {
reportDir: testConfig.TestOutputDir,
reportName: 'index',
reportTitle: 'Crossbrowser results',
inlineAssets: true,
},
},
},
},
multiple: {
microsoft: {
browsers: getBrowserConfig('microsoft'),
},
chrome: {
browsers: getBrowserConfig('chrome'),
},
firefox: {
browsers: getBrowserConfig('firefox'),
},
safari: {
browsers: getBrowserConfig('safari'),
},
},
name: 'Civil FrontEnd Cross-Browser Tests',
};
exports.config = setupConfig;