-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
585db67
commit 774a338
Showing
3 changed files
with
57 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
var ourProcess = require('./browser'); | ||
var assert = require('assert'); | ||
|
||
describe('test errors', function (t) { | ||
it ('works', function (done) { | ||
var order = 0; | ||
process.removeAllListeners('uncaughtException'); | ||
process.once('uncaughtException', function(err) { | ||
assert.equal(2, order++, 'error is third'); | ||
process.nextTick(function () { | ||
assert.equal(5, order++, 'schedualed in error is last'); | ||
done(); | ||
}); | ||
}); | ||
process.nextTick(function () { | ||
assert.equal(0, order++, 'first one works'); | ||
process.nextTick(function () { | ||
assert.equal(4, order++, 'recursive one is 4th'); | ||
}); | ||
}); | ||
process.nextTick(function () { | ||
assert.equal(1, order++, 'second one starts'); | ||
throw(new Error('an error is thrown')); | ||
}); | ||
process.nextTick(function () { | ||
assert.equal(3, order++, '3rd schedualed happens after the error'); | ||
}); | ||
}); | ||
}); |