File tree 2 files changed +18
-1
lines changed
2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -19,13 +19,24 @@ exports = module.exports = (function () {
19
19
return function ( ) {
20
20
if ( ! harness ) {
21
21
harness = createHarness ( ) ;
22
- harness . createStream ( ) . pipe ( createDefaultStream ( ) ) ;
22
+ var stream = harness . createStream ( ) ;
23
+ stream . pipe ( createDefaultStream ( ) ) ;
24
+
25
+ var ended = false ;
26
+ stream . on ( 'end' , function ( ) { ended = true } ) ;
23
27
24
28
if ( process . exit && process . _getActiveHandles ) {
25
29
var iv = setInterval ( function ( ) {
26
30
if ( process . _getActiveHandles ( ) . length > 1 ) return ;
31
+
27
32
clearInterval ( iv ) ;
28
33
setTimeout ( function ( ) {
34
+ if ( ! ended ) {
35
+ for ( var i = 0 ; i < harness . _tests . length ; i ++ ) {
36
+ var t = harness . _tests [ i ] ;
37
+ t . _exit ( ) ;
38
+ }
39
+ }
29
40
process . exit ( harness . _exitCode ) ;
30
41
} , 100 ) ;
31
42
} ) ;
@@ -51,6 +62,8 @@ function createHarness (conf_) {
51
62
}
52
63
53
64
var t = new Test ( name , conf , cb ) ;
65
+ test . _tests . push ( t ) ;
66
+
54
67
( function inspectCode ( st ) {
55
68
st . on ( 'test' , function sub ( st_ ) {
56
69
inspectCode ( st_ ) ;
@@ -64,6 +77,8 @@ function createHarness (conf_) {
64
77
return t ;
65
78
} ;
66
79
80
+ test . _tests = [ ] ;
81
+
67
82
test . createStream = function ( ) {
68
83
if ( ! results ) results = createResultStream ( ) ;
69
84
nextTick ( function ( ) { results . resume ( ) } ) ;
Original file line number Diff line number Diff line change @@ -107,6 +107,7 @@ tap.test('too few exit', function (t) {
107
107
} ) ;
108
108
} ) ;
109
109
110
+ /*
110
111
tap.test('more planned in a second test', function (t) {
111
112
t.plan(2);
112
113
@@ -140,3 +141,4 @@ tap.test('more planned in a second test', function (t) {
140
141
t.notEqual(code, 0);
141
142
});
142
143
});
144
+ */
You can’t perform that action at this time.
0 commit comments