We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Please describe. cannot use scenario outline
Describe the solution you'd like able to use scenario outline
Describe alternatives you've considered i've make some change in TestingApp.ts but i couldn't create PR for that
feature.scenarioOutlines.forEach((scenarioOutline) => { scenarioOutline.scenarios.forEach((scenario) => { const testFn = scenario.tags.includes("@skip") ? test.skip : scenario.tags.includes("@only") ? test.only : test; testFn(scenario.title, (keywords) => { const context = createContext(this, feature); scenario.steps.forEach((step) => { const keyword = keywords[step.keyword]; keyword(step.stepText, () => { // istanbul ignore if if (this._container == null) { throw new Error("TestingApp not initialized. Make sure you call start() method in beforeAll() hook."); } const [re, fn] = this._container .get(MatcherRegistry) .getMatcherFor(step.stepText); if (typeof re === "string") { return fn(context); } else { const args = re.exec(step.stepText); // eslint-disable-line @typescript-eslint/no-non-null-assertion return fn(context, ...args.slice(1), args[0], step, scenario, feature); } }); }); }); }); });
Additional context
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
cannot use scenario outline
Describe the solution you'd like
able to use scenario outline
Describe alternatives you've considered
i've make some change in TestingApp.ts but i couldn't create PR for that
Additional context
The text was updated successfully, but these errors were encountered: