-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Event emitters don't seem to be working #4
Labels
Comments
Which version are you on. I think I had found an issue and published it. v0.1.1 |
I'll double check, but I had just installed it with |
I'm on 0.3.0. |
You still have the problem? |
How about binding the handlers before calling run? |
stairs()
.on('error', function (...) {})
.step('blah', function (...) { })
.on('step', function () {...}).run(...); |
I think I tried that too, but I'm not positive, so I'll try it again. |
Are you still having issues? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does this look correct? (
next
is from async.each)Neither of the
on
handlers are logging anything, and the tests fail, so presumably, the events are not firing correctly . . . or I'm setting this up wrong.Also tried it with
The text was updated successfully, but these errors were encountered: