gitextract_67pl99xn/ ├── .build/ │ └── setPackageVersion.js ├── .github/ │ └── workflows/ │ ├── ci.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .npm-upgrade.json ├── .run/ │ ├── All Tests.run.xml │ └── Template Cucumber.js.run.xml ├── .vscode/ │ ├── launch.json │ └── settings.json ├── CONTRIBUTE.md ├── LICENSE ├── README.md ├── cucumber-tsflow/ │ ├── .npmignore │ ├── package.json │ ├── src/ │ │ ├── binding-decorator.ts │ │ ├── binding-registry.ts │ │ ├── hook-decorators.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ ├── managed-scenario-context.ts │ │ ├── our-callsite.ts │ │ ├── provided-context.ts │ │ ├── scenario-context.ts │ │ ├── scenario-info.ts │ │ ├── step-binding-flags.ts │ │ ├── step-binding.ts │ │ ├── step-definition-decorators.ts │ │ ├── tag-normalization.ts │ │ └── types.ts │ └── tsconfig.json ├── cucumber-tsflow-specs/ │ ├── features/ │ │ ├── basic-test.feature │ │ ├── cucumber-context-objects.feature │ │ ├── custom-context-objects.feature │ │ ├── external-context-extraction.feature │ │ ├── global-hooks.feature │ │ ├── hooks.feature │ │ └── tag-parameters.feature │ ├── package.json │ ├── src/ │ │ ├── step_definitions/ │ │ │ ├── cucumber_steps.ts │ │ │ ├── file_steps.ts │ │ │ ├── prepare.ts │ │ │ └── scenario_steps.ts │ │ └── support/ │ │ ├── formatter_output_helpers.ts │ │ ├── helpers.ts │ │ ├── runner.ts │ │ └── testDir.ts │ └── tsconfig.json ├── cucumber.js ├── lerna.json ├── package.json ├── tsconfig.json ├── tslint.json └── version.json