Skip to content

Commit dd661b0

Browse files
committed
Remove uncaught-exception.
1 parent 00835d8 commit dd661b0

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

index.js

-14
Original file line numberDiff line numberDiff line change
@@ -63,23 +63,9 @@ function createExitHarness (conf) {
6363

6464
if (conf.exit === false) return harness;
6565
if (!canEmitExit || !canExit) return harness;
66-
67-
var _error;
6866

69-
process.on('uncaughtException', function (err) {
70-
if (err && err.code === 'EPIPE' && err.errno === 'EPIPE'
71-
&& err.syscall === 'write') return;
72-
73-
_error = err
74-
75-
throw err
76-
})
7767

7868
process.on('exit', function (code) {
79-
if (_error) {
80-
return
81-
}
82-
8369
if (!ended) {
8470
var only = harness._results._only;
8571
for (var i = 0; i < harness._tests.length; i++) {

0 commit comments

Comments
 (0)