@serenity-js/cucumber 3.10.0 → 3.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/README.md +14 -11
- package/lib/adapter/CucumberFormat.js +1 -1
- package/lib/adapter/CucumberOptions.d.ts.map +1 -1
- package/lib/adapter/CucumberOptions.js +0 -1
- package/lib/adapter/CucumberOptions.js.map +1 -1
- package/package.json +6 -6
- package/src/adapter/CucumberFormat.ts +1 -1
- package/src/adapter/CucumberOptions.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.10.2](https://github.com/serenity-js/serenity-js/compare/v3.10.1...v3.10.2) (2023-09-10)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **core:** updated installation instruction in the README ([ec3f277](https://github.com/serenity-js/serenity-js/commit/ec3f2778334abbd7324497ceaa2df9f0560a103e)), closes [#1915](https://github.com/serenity-js/serenity-js/issues/1915)
|
|
12
|
+
* **cucumber:** removed publishQuiet config option as it's been removed from Cucumber ([5a880ce](https://github.com/serenity-js/serenity-js/commit/5a880ce6960fc7266fc4ed3489bb91e2dd6ad6c7))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## [3.10.1](https://github.com/serenity-js/serenity-js/compare/v3.10.0...v3.10.1) (2023-09-01)
|
|
19
|
+
|
|
20
|
+
**Note:** Version bump only for package @serenity-js/cucumber
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
6
26
|
# [3.10.0](https://github.com/serenity-js/serenity-js/compare/v3.9.1...v3.10.0) (2023-08-23)
|
|
7
27
|
|
|
8
28
|
**Note:** Version bump only for package @serenity-js/cucumber
|
package/README.md
CHANGED
|
@@ -9,9 +9,10 @@
|
|
|
9
9
|
of complex software systems faster, more collaborative and easier to scale.
|
|
10
10
|
|
|
11
11
|
⭐️ Get started with Serenity/JS!
|
|
12
|
-
- [Serenity/JS
|
|
13
|
-
- [
|
|
14
|
-
- [
|
|
12
|
+
- [Serenity/JS web testing tutorial](https://serenity-js.org/handbook/web-testing/your-first-web-scenario)
|
|
13
|
+
- [Serenity/JS Handbook](https://serenity-js.org/handbook) and [Getting Started guides](https://serenity-js.org/handbook/getting-started/)
|
|
14
|
+
- [API documentation](https://serenity-js.org/api/core)
|
|
15
|
+
- [Serenity/JS Project Templates on GitHub](https://serenity-js.org/handbook/getting-started#serenityjs-project-templates)
|
|
15
16
|
|
|
16
17
|
👋 Join the Serenity/JS Community!
|
|
17
18
|
- Meet other Serenity/JS developers and maintainers on the [Serenity/JS Community chat channel](https://matrix.to/#/#serenity-js:gitter.im),
|
|
@@ -33,13 +34,13 @@ Learn more about integrating Serenity/JS Cucumber:
|
|
|
33
34
|
|
|
34
35
|
To install this module, run:
|
|
35
36
|
```
|
|
36
|
-
npm install --save-dev @serenity-js/
|
|
37
|
+
npm install --save-dev @serenity-js/cucumber @serenity-js/core
|
|
37
38
|
```
|
|
38
39
|
|
|
39
|
-
This module reports test scenarios executed by **any version of Cucumber.js**, from 0.x to
|
|
40
|
+
This module reports test scenarios executed by **any version of Cucumber.js**, from 0.x to 9.x, which you need to install
|
|
40
41
|
separately.
|
|
41
42
|
|
|
42
|
-
To install [Cucumber
|
|
43
|
+
To install [Cucumber 9.x](https://www.npmjs.com/package/@cucumber/cucumber), run:
|
|
43
44
|
```
|
|
44
45
|
npm install --save-dev @cucumber/cucumber
|
|
45
46
|
```
|
|
@@ -49,9 +50,11 @@ To install [Cucumber 6.x](https://www.npmjs.com/package/cucumber) or earlier, ru
|
|
|
49
50
|
npm install --save-dev cucumber
|
|
50
51
|
```
|
|
51
52
|
|
|
53
|
+
To learn more about Serenity/JS and how to use it on your project, follow the [Serenity/JS Getting Started guide](https://serenity-js.org/handbook/getting-started/).
|
|
54
|
+
|
|
52
55
|
### Command line usage
|
|
53
56
|
|
|
54
|
-
#### Cucumber 7.x
|
|
57
|
+
#### Cucumber 7.x and newer
|
|
55
58
|
|
|
56
59
|
```
|
|
57
60
|
cucumber-js --format @serenity-js/cucumber \
|
|
@@ -82,11 +85,11 @@ When used with a configuration file written in JavaScript:
|
|
|
82
85
|
```javascript
|
|
83
86
|
// features/support/setup.js
|
|
84
87
|
|
|
85
|
-
const { configure } = require('@serenity-js/core')
|
|
88
|
+
const { configure } = require('@serenity-js/core')
|
|
86
89
|
|
|
87
90
|
configure({
|
|
88
91
|
// ... configure Serenity/JS
|
|
89
|
-
})
|
|
92
|
+
})
|
|
90
93
|
```
|
|
91
94
|
|
|
92
95
|
When used with a configuration file written in TypeScript:
|
|
@@ -94,11 +97,11 @@ When used with a configuration file written in TypeScript:
|
|
|
94
97
|
```typescript
|
|
95
98
|
// features/support/setup.ts
|
|
96
99
|
|
|
97
|
-
import { configure } from '@serenity-js/core'
|
|
100
|
+
import { configure } from '@serenity-js/core'
|
|
98
101
|
|
|
99
102
|
configure({
|
|
100
103
|
// ... configure Serenity/JS
|
|
101
|
-
})
|
|
104
|
+
})
|
|
102
105
|
```
|
|
103
106
|
|
|
104
107
|
### Integration
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CucumberOptions.d.ts","sourceRoot":"","sources":["../../src/adapter/CucumberOptions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,KAAK,EAAE,UAAU,EAAC,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAQ,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAEzD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAEvD;;GAEG;AACH,qBAAa,eAAe;IAEpB,OAAO,CAAC,QAAQ,CAAC,UAAU;IAC3B,OAAO,CAAC,QAAQ,CAAC,MAAM;gBADN,UAAU,EAAE,UAAU,EACtB,MAAM,EAAE,cAAc;IAI3C,QAAQ,IAAI,OAAO;IAInB,sBAAsB,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,EAAE;IAgBlD,OAAO,CAAC,OAAO;IAYf,0BAA0B,IAAI,OAAO,CAAC,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"CucumberOptions.d.ts","sourceRoot":"","sources":["../../src/adapter/CucumberOptions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,KAAK,EAAE,UAAU,EAAC,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAQ,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAEzD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAEvD;;GAEG;AACH,qBAAa,eAAe;IAEpB,OAAO,CAAC,QAAQ,CAAC,UAAU;IAC3B,OAAO,CAAC,QAAQ,CAAC,MAAM;gBADN,UAAU,EAAE,UAAU,EACtB,MAAM,EAAE,cAAc;IAI3C,QAAQ,IAAI,OAAO;IAInB,sBAAsB,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,EAAE;IAgBlD,OAAO,CAAC,OAAO;IAYf,0BAA0B,IAAI,OAAO,CAAC,cAAc,CAAC;IA0BrD,OAAO,CAAC,cAAc;IAiBtB,OAAO,CAAC,SAAS;IAYjB,OAAO,CAAC,QAAQ;IAMhB;;;;;;;;OAQG;IACH,OAAO,CAAC,eAAe;IAMvB,OAAO,CAAC,yBAAyB;IAMjC,OAAO,CAAC,SAAS;IAWjB,OAAO,CAAC,YAAY;CAKvB"}
|
|
@@ -47,7 +47,6 @@ class CucumberOptions {
|
|
|
47
47
|
// paths: string[],
|
|
48
48
|
// parallel: number, // this only works when Cucumber is the runner, in which scenario CucumberCLIAdapter is not used anyway
|
|
49
49
|
publish: false,
|
|
50
|
-
publishQuiet: true,
|
|
51
50
|
require: this.asArray(this.config.require),
|
|
52
51
|
requireModule: this.asArray(this.config.requireModule),
|
|
53
52
|
retry: this.config.retry,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CucumberOptions.js","sourceRoot":"","sources":["../../src/adapter/CucumberOptions.ts"],"names":[],"mappings":";;;AAEA,iDAAyD;AAIzD;;GAEG;AACH,MAAa,eAAe;IACxB,YACqB,UAAsB,EACtB,MAAsB;QADtB,eAAU,GAAV,UAAU,CAAY;QACtB,WAAM,GAAN,MAAM,CAAgB;IAE3C,CAAC;IAED,QAAQ;QACJ,OAAO,IAAI,CAAC,SAAS,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;IAC1C,CAAC;IAED,sBAAsB,CAAC,OAAgB;QAEnC,OAAO,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC;aAC1B,MAAM,CACH,CAAC,GAAG,EAAE,MAA4B,EAAE,EAAE,CAClC,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YAC3B,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC;YACvE,CAAC,CAAC,GAAG;QAEb,uFAAuF;QACvF,gHAAgH;QAChH,CAAE,MAAM,EAAE,aAAa,CAAE,CAC5B;aACA,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,IAAI,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,SAAI,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;IACpH,CAAC;IAEO,OAAO,CAAI,KAAwB;QACvC,IAAI,KAAK,KAAK,SAAS,EAAE;YACrB,OAAO,EAAE,CAAC;SACb;QAED,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;YACtB,OAAO,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SAC5B;QAED,OAAO,CAAE,KAAU,CAAE,CAAC;IAC1B,CAAC;IAED,0BAA0B;QAEtB,0EAA0E;QAC1E,OAAO;YACH,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM;YAC1B,SAAS,EAAE,KAAK;YAChB,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,QAAQ;YAC9B,MAAM,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;YACxC,aAAa,EAAE,IAAI,CAAC,MAAM,CAAC,aAAoB;YAC/C,MAAM,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;YACxC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,QAAQ;YAC9B,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC;YACpC,qBAAqB;YACrB,mBAAmB;YACnB,6HAA6H;YAC7H,OAAO,EAAE,KAAK;YACd,
|
|
1
|
+
{"version":3,"file":"CucumberOptions.js","sourceRoot":"","sources":["../../src/adapter/CucumberOptions.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/cucumber",
|
|
3
|
-
"version": "3.10.
|
|
3
|
+
"version": "3.10.2",
|
|
4
4
|
"description": "Serenity/JS adapter for Cucumber test runners version 1.x - 7.x",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jan Molak",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@cucumber/messages": "21.0.1",
|
|
47
|
-
"@serenity-js/core": "3.10.
|
|
47
|
+
"@serenity-js/core": "3.10.2",
|
|
48
48
|
"cli-table3": "^0.6.3",
|
|
49
49
|
"gherkin": "5.1.0",
|
|
50
50
|
"tiny-types": "^1.20.0"
|
|
@@ -62,15 +62,15 @@
|
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@cucumber/cucumber": "^9.
|
|
65
|
+
"@cucumber/cucumber": "^9.5.1",
|
|
66
66
|
"@integration/testing-tools": "3.0.0",
|
|
67
|
-
"@types/chai": "^4.3.
|
|
67
|
+
"@types/chai": "^4.3.6",
|
|
68
68
|
"@types/mocha": "^10.0.1",
|
|
69
69
|
"c8": "8.0.1",
|
|
70
70
|
"mocha": "^10.2.0",
|
|
71
71
|
"mocha-multi": "^1.1.7",
|
|
72
72
|
"ts-node": "^10.9.1",
|
|
73
|
-
"typescript": "
|
|
73
|
+
"typescript": "5.1.6"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "6834827fffe5dd8dd3d2f39d2fea2c4039ab1d3d"
|
|
76
76
|
}
|
|
@@ -62,7 +62,6 @@ export class CucumberOptions {
|
|
|
62
62
|
// paths: string[],
|
|
63
63
|
// parallel: number, // this only works when Cucumber is the runner, in which scenario CucumberCLIAdapter is not used anyway
|
|
64
64
|
publish: false,
|
|
65
|
-
publishQuiet: true,
|
|
66
65
|
require: this.asArray(this.config.require),
|
|
67
66
|
requireModule: this.asArray(this.config.requireModule),
|
|
68
67
|
retry: this.config.retry,
|