File tree 3 files changed +18
-10
lines changed
3 files changed +18
-10
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ test('nested array test', function (t) {
16
16
}
17
17
} ) ;
18
18
19
- t . test ( function ( q ) {
19
+ t . test ( 'inside test' , function ( q ) {
20
20
q . plan ( 2 ) ;
21
21
q . ok ( true ) ;
22
22
Original file line number Diff line number Diff line change @@ -38,13 +38,25 @@ function createHarness () {
38
38
else run ( ) ;
39
39
} ) ;
40
40
41
- t . on ( 'end' , function ( ) {
41
+ t . on ( 'test' , function ( st ) {
42
+ pending . unshift ( function ( ) {
43
+ running = true ;
44
+ out . push ( st ) ;
45
+ st . run ( ) ;
46
+
47
+ st . on ( 'end' , onend ) ;
48
+ } ) ;
49
+ } ) ;
50
+
51
+ t . on ( 'end' , onend ) ;
52
+
53
+ function onend ( ) {
42
54
running = false ;
43
55
process . nextTick ( function ( ) {
44
56
if ( pending . length ) pending . shift ( ) ( )
45
57
else out . close ( )
46
58
} ) ;
47
- } ) ;
59
+ }
48
60
} ;
49
61
50
62
return out ;
Original file line number Diff line number Diff line change @@ -23,13 +23,9 @@ Test.prototype.test = function (name, cb) {
23
23
name = '(anonymous)' ;
24
24
}
25
25
26
- /*
27
- var t = new Test(name);
28
-
29
- t.on('plan', function (n) {
30
- self._plan += n;
31
- });
32
- */
26
+ var t = new Test ( name , { indent : self . indent + 2 } ) ;
27
+ t . run = function ( ) { cb ( t ) } ;
28
+ self . emit ( 'test' , t ) ;
33
29
} ;
34
30
35
31
Test . prototype . comment = function ( msg ) {
You can’t perform that action at this time.
0 commit comments