@lynxwall/cucumber-tsflow 6.5.6 → 6.5.7
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/README.md +2 -2
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -580,7 +580,7 @@ With Context Injection you first need to define one or more classes that will be
|
|
|
580
580
|
|
|
581
581
|
```typescript
|
|
582
582
|
import { World } from '@cucumber/cucumber';
|
|
583
|
-
import { EndTestCaseInfo, StartTestCaseInfo } from '@lynxwall/cucumber-tsflow
|
|
583
|
+
import { EndTestCaseInfo, StartTestCaseInfo } from '@lynxwall/cucumber-tsflow';
|
|
584
584
|
|
|
585
585
|
export class ScenarioContext {
|
|
586
586
|
public world: World;
|
|
@@ -614,7 +614,7 @@ export class ScenarioContext {
|
|
|
614
614
|
|
|
615
615
|
```typescript
|
|
616
616
|
import { World } from '@cucumber/cucumber';
|
|
617
|
-
import { EndTestCaseInfo, StartTestCaseInfo } from '@lynxwall/cucumber-tsflow
|
|
617
|
+
import { EndTestCaseInfo, StartTestCaseInfo } from '@lynxwall/cucumber-tsflow';
|
|
618
618
|
|
|
619
619
|
export class ScenarioContext {
|
|
620
620
|
public world: World;
|
package/lib/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './cucumber/binding-decorator';
|
|
2
2
|
export * from './cucumber/hook-decorators';
|
|
3
3
|
export * from './cucumber/step-definition-decorators';
|
|
4
|
+
export { StartTestCaseInfo, EndTestCaseInfo } from './cucumber/test-case-info';
|
|
4
5
|
export { ScenarioContext, ScenarioInfo } from './types/scenario-context';
|
package/lib/index.js
CHANGED
|
@@ -20,4 +20,4 @@ __exportStar(require("./cucumber/hook-decorators"), exports);
|
|
|
20
20
|
__exportStar(require("./cucumber/step-definition-decorators"), exports);
|
|
21
21
|
var scenario_context_1 = require("./types/scenario-context");
|
|
22
22
|
Object.defineProperty(exports, "ScenarioInfo", { enumerable: true, get: function () { return scenario_context_1.ScenarioInfo; } });
|
|
23
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSwrREFBNkM7QUFDN0MsNkRBQTJDO0FBQzNDLHdFQUFzRDtBQUV0RCw2REFBeUU7QUFBL0MsZ0hBQUEsWUFBWSxPQUFBIn0=
|
package/lib/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "6.5.
|
|
1
|
+
export declare const version = "6.5.7";
|
package/lib/version.js
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.version = void 0;
|
|
4
4
|
// Generated by genversion.
|
|
5
|
-
exports.version = '6.5.
|
|
5
|
+
exports.version = '6.5.7';
|
|
6
6
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy92ZXJzaW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLDJCQUEyQjtBQUNkLFFBQUEsT0FBTyxHQUFHLE9BQU8sQ0FBQSJ9
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynxwall/cucumber-tsflow",
|
|
3
3
|
"description": "Provides 'specflow' like bindings for CucumberJS 9.6.0+ in TypeScript 5.0+.",
|
|
4
|
-
"version": "6.5.
|
|
4
|
+
"version": "6.5.7",
|
|
5
5
|
"author": "Lonnie Wall <lynxdev@lynxwall.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "./lib/index",
|