@lynxwall/cucumber-tsflow 6.5.5 → 6.5.6

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 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/lib/cucumber/test-case-info';
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/lib/cucumber/test-case-info';
618
618
 
619
619
  export class ScenarioContext {
620
620
  public world: World;
@@ -1,6 +1,6 @@
1
1
  import { ContextType } from '../types/types';
2
2
  import { ScenarioContext, ScenarioInfo } from '../types/scenario-context';
3
- import { EndTestCaseInfo, StartTestCaseInfo } from '../types/test-case-info';
3
+ import { EndTestCaseInfo, StartTestCaseInfo } from './test-case-info';
4
4
  import { World } from '@cucumber/cucumber';
5
5
  /**
6
6
  * Represents a [[ScenarioContext]] implementation that manages a collection of context objects that
@@ -1,7 +1,7 @@
1
1
  import * as messages from '@cucumber/messages';
2
2
  import { StepBinding } from '../types/step-binding';
3
3
  import { ManagedScenarioContext } from './managed-scenario-context';
4
- import { EndTestCaseInfo } from '../types/test-case-info';
4
+ import { EndTestCaseInfo } from './test-case-info';
5
5
  export interface ITestCaseAttempt {
6
6
  attempt: number;
7
7
  willBeRetried: boolean;
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdC1jYXNlLWluZm8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdHlwZXMvdGVzdC1jYXNlLWluZm8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdC1jYXNlLWluZm8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvY3VjdW1iZXIvdGVzdC1jYXNlLWluZm8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
package/lib/index.d.ts CHANGED
@@ -2,4 +2,3 @@ export * from './cucumber/binding-decorator';
2
2
  export * from './cucumber/hook-decorators';
3
3
  export * from './cucumber/step-definition-decorators';
4
4
  export { ScenarioContext, ScenarioInfo } from './types/scenario-context';
5
- export { StartTestCaseInfo, EndTestCaseInfo } from './types/test-case-info';
package/lib/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "6.5.5";
1
+ export declare const version = "6.5.6";
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';
5
+ exports.version = '6.5.6';
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.5",
4
+ "version": "6.5.6",
5
5
  "author": "Lonnie Wall <lynxdev@lynxwall.com>",
6
6
  "license": "MIT",
7
7
  "main": "./lib/index",
File without changes