Thanks for this plugin. it is helpful to create unique step defs.
I am using playwright + typescript + cucumber framework and wanted to request if ""async function" can be added to function definition when above framework combination is used.
Currently step def generated is:
Then(I should see text {string}, (arg0: string) => {
// [Then] Describes the expected outcome or result of the scenario.
});
Requested step def generation:
Then(I should see text {string}, async function (arg0: string) => {
// [Then] Describes the expected outcome or result of the scenario.
});
Thanks for this plugin. it is helpful to create unique step defs. I am using playwright + typescript + cucumber framework and wanted to request if ""async function" can be added to function definition when above framework combination is used.
Currently step def generated is: Then(
I should see text {string}
, (arg0: string) => { // [Then] Describes the expected outcome or result of the scenario. });Requested step def generation: Then(
I should see text {string}
, async function (arg0: string) => { // [Then] Describes the expected outcome or result of the scenario. });Thanks!