-
-
Notifications
You must be signed in to change notification settings - Fork 753
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
Make sure .setup() runs on dynamic services. #110
Conversation
@daffl Does this look ready to merge? |
socket.on('tasks removed', function (data) { | ||
service.removed = oldRemoved; | ||
assert.equal(data.id, 23); | ||
done(); | ||
console.log('Ready: ' + ready); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
console.log
Yes, after you remove the |
dbce3b6
to
78dbec3
Compare
Wow. squash is new for me. That was a beautiful experience. |
Make sure .setup() runs on dynamic services.
Fix generated app tests for latest packages
Setup() wasn't being run on dynamic services. I've included a fix and updated one of the tests to make sure setup runs.
Oh, I also moved
stripSlashes(location)
to the top of app.service() and replaced all duplicate instances of it withlocation
.