-
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
425bfea
commit 0b795a0
Showing
2 changed files
with
25 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
var test = require('tape'); | ||
|
||
var ourProcess = require('./browser'); | ||
var assert = require('assert'); | ||
|
||
|
||
test('test errors', function (t) { | ||
t.plan(7); | ||
var order = 0; | ||
process.once('uncaughtException', function(err) { | ||
t.ok(true, err.message); | ||
t.equals(2, order++, 'error is third'); | ||
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 () { | ||
t.equals(5, order++, 'schedualed in error is last'); | ||
assert.equal(4, order++, 'recursive one is 4th'); | ||
}); | ||
}); | ||
process.nextTick(function () { | ||
t.equals(0, order++, 'first one works'); | ||
}); | ||
process.nextTick(function () { | ||
t.equals(4, order++, 'recursive one is 4th'); | ||
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'); | ||
}); | ||
}); | ||
process.nextTick(function () { | ||
t.equals(1, order++, 'second one starts'); | ||
throw(new Error('an error is thrown')); | ||
}); | ||
process.nextTick(function () { | ||
t.equals(3, order++, '3rd schedualed happens after the error'); | ||
}); | ||
}); |