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
When a user passes a wrong command, it will fail silently.
constscenario=clix('command that fail').expect('poof').const{ ok }=awaitscenario.run();// the run doesn't throw 😱// ok === false
Expected behavior
constscenario=clix('command-foo').expect('poof').try{const{ ok }=awaitscenario.run();}catch(e){// .run() should we should catch an error// e === new Error('Run command-foo failed: <error>');}
The text was updated successfully, but these errors were encountered:
Current behavior
When a user passes a wrong command, it will fail silently.
Expected behavior
The text was updated successfully, but these errors were encountered: