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
Consider the stepdef in example/index.html:
Given(/a variable set to (\d+)/, function(number, callback) { variable = parseInt(number); callback(); });
If I replace this with:
Given(/a variable set to (\d+)/, function(number, callback) { variable = parseInt(number); setTimeout(function() { callback(); }, 0); });
then I get an exception.
The text was updated successfully, but these errors were encountered:
Thanks for reporting here. As I told you I guess there is a glitch in the callback chain. It should be fixed by Monday.
Sorry, something went wrong.
205b4e0
Merge pull request blinkbox#1 from timblinkbox/master
529e157
Integration with Angular Scenario Runner.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
jbpros
No branches or pull requests
Consider the stepdef in example/index.html:
If I replace this with:
then I get an exception.
The text was updated successfully, but these errors were encountered: