-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.mocharc.js
32 lines (32 loc) · 834 Bytes
/
.mocharc.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
module.exports = {
spec: ['tests/specs/**/*.spec.ts'],
package: './package.json',
extension: ['.ts'],
timeout: 60 * 1000,
color: true,
grep: '',
ignore: [''],
reporter: 'mochawesome',
'reporter-option': [
'consoleReporter=spec',
'reportDir=report',
'reportFilename=index',
'reportTitle=Selenium Test Report',
'charts=true',
'code=true',
'inline=true',
'autoOpen=false',
'timestamp=dd-mm-yyyy\'T\'HH-MM-ss',
'showPassed=true',
'showFailed=true',
'showPending=true',
'showSkipped=true',
'showHooks=failed'
],
require: ['ts-node/register, tsconfig-paths/register', 'mochawesome/register'],
parallel: true,
recursive: false,
retries: 0,
sort: false,
ui: 'bdd'
};