-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.js
59 lines (49 loc) · 1.08 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
var tape = require('tape')
var global = require('global')
var tests = require('./manager')()
var harness
exports = module.exports = tape
// Maintain tape@1 compatibility
var _end = (
exports.Test.prototype._end ||
exports.Test.prototype.end
)
exports.Test.prototype._end = function () {
tests.remove(this)
_end.apply(this, arguments)
}
exports.Test.prototype.run = function () {
if (!this._cb || this._skip) {
return this._end()
}
this.emit('prerun')
try {
tests.add(this)
this._cb(this)
}
catch (err) {
this.error(err)
this._end()
return
}
this.emit('run')
}
var createHarness = exports.createHarness
exports.createHarness = function () {
harness = createHarness.apply(this, arguments)
return harness
}
process.browser ?
global.onerror = killall :
process.on('uncaughtException', killall)
function killall (err) {
if (tests.killall(err)) return
// Died outside of a test block
harness ?
harness('uncaughtException', die) :
tape('uncaughtException', die)
function die (test) {
test.error(err)
test.end()
}
}