-
Notifications
You must be signed in to change notification settings - Fork 713
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
More compatible with iojs #560
Conversation
Sorry, not ready to review |
No worries, please leave a comment when it's ready. |
f26560e
to
2383912
Compare
dff252c
to
ff49529
Compare
bb4f93b
to
f7355a7
Compare
68904da
to
1596417
Compare
@bajtos , this partially ready to review. Strategy of this pr:
About fixes for 0.12:
It may be that we need help of core node developers here. Unfortunately I can't reproduce this problem in isolated sample. |
session; | ||
|
||
describe('should cache events', function() { | ||
it('if started in debug-brk mode', function(done) { |
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.
The test names "describe should change events" and "it if started in debug-brk mode" don't read as English. Can you please rephrase? For example:
describe('event cache', function() { // or 'event caching'
it('works correctly when started in debug-brk mode', function(done) {
The same applies to all other test names.
I like the idea of moving the different object instances to a single session object. My initial dependency-injection approach did not worked well. Can you please make The changes made in the production code (
Perhaps |
Can you, please, describe more verbose this part? |
Sure, see #560 (comment) |
c13672c
to
87a751f
Compare
Added description for tests. Rebased to master. |
I'll change names on next fix step. |
No more comments. I'd really like to see |
@bajtos , I'm really sorry for my English =) You feel free to correct me any time. |
Ok. I'll make last fixes and merge this. |
Cache events from app before resource tree resolving
We are not full compatible, but can use old features.
@bajtos , please review.