You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Within a step function, when I invoke a play function from another story, and pass full context as an argument, the linter complains with context-in-play-function
To Reproduce
awaitDefault.play?.(context);// works fineawaitstep('In step',async()=>{awaitDefault.play?.(context);// has lint errors})
Expected behavior
no lint errors
OR a message that says we shouldn't play other functions within a step.
Additional context
Please do let me know of we shouldn't play other functions within a step.
Thanks!
The text was updated successfully, but these errors were encountered:
Describe the bug
Within a
step
function, when I invoke a play function from another story, and pass full context as an argument, the linter complains with context-in-play-functionTo Reproduce
Expected behavior
play
other functions within astep
.Additional context
Please do let me know of we shouldn't play other functions within a
step
.Thanks!
The text was updated successfully, but these errors were encountered: