File tree 3 files changed +14
-12
lines changed
3 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ Please see [CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CO
19
19
20
20
### Fixed
21
21
22
+ * Fixed reports banner to point to [ new docs] ( https://cucumber.io/docs/cucumber/environment-variables/ ) about environment variables
23
+
22
24
## [ 7.3.0] (2021-06-17)
23
25
24
26
### Added
Original file line number Diff line number Diff line change @@ -90,17 +90,17 @@ Feature: Publish reports
90
90
When I run cucumber-js
91
91
Then the error output contains the text:
92
92
"""
93
- ┌──────────────────────────────────────────────────────────────────────────┐
94
- │ Share your Cucumber Report with your team at https://reports.cucumber.io │
95
- │ │
96
- │ Command line option: --publish │
97
- │ Environment variable: CUCUMBER_PUBLISH_ENABLED=true │
98
- │ │
99
- │ More information at https://reports. cucumber.io/docs/cucumber-js │
100
- │ │
101
- │ To disable this message, add this to your ./cucumber.js: │
102
- │ module.exports = { default: '--publish-quiet' } │
103
- └──────────────────────────────────────────────────────────────────────────┘
93
+ ┌────────────────────────────────────────────────────────────────────────────── ┐
94
+ │ Share your Cucumber Report with your team at https://reports.cucumber.io │
95
+ │ │
96
+ │ Command line option: --publish │
97
+ │ Environment variable: CUCUMBER_PUBLISH_ENABLED=true │
98
+ │ │
99
+ │ More information at https://cucumber.io/docs/cucumber/environment-variables/ │
100
+ │ │
101
+ │ To disable this message, add this to your ./cucumber.js: │
102
+ │ module.exports = { default: '--publish-quiet' } │
103
+ └────────────────────────────────────────────────────────────────────────────── ┘
104
104
"""
105
105
106
106
@spawn
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ const formattedReportUrl = underlineBoldCyan('https://reports.cucumber.io')
8
8
const formattedEnv =
9
9
colors . cyan ( 'CUCUMBER_PUBLISH_ENABLED' ) + '=' + colors . cyan ( 'true' )
10
10
const formattedMoreInfoUrl = underlineBoldCyan (
11
- 'https://reports. cucumber.io/docs/cucumber-js '
11
+ 'https://cucumber.io/docs/cucumber/environment-variables/ '
12
12
)
13
13
14
14
const text = `\
You can’t perform that action at this time.
0 commit comments