-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcucumber.js
18 lines (16 loc) · 1.36 KB
/
cucumber.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var path = require('path');
global.__base = path.resolve(__dirname) + '/';
module.exports = {
default: `--publish-quiet --format-options '{"snippetInterface": "synchronous"}'`
}
//┌──────────────────────────────────────────────────────────────────────────┐
//│ Share your Cucumber Report with your team at https://reports.cucumber.io │
//│ │
//│ Command line option: --publish │
//│ Environment variable: CUCUMBER_PUBLISH_ENABLED=true │
//│ │
//│ More information at https://reports.cucumber.io/docs/cucumber-js │
//│ │
//│ To disable this message, add this to your ./cucumber.js: │
//│ module.exports = { default: '--publish-quiet' } │
//└──────────────────────────────────────────────────────────────────────────┘