File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -61,5 +61,13 @@ function createHarness (conf_) {
61
61
return results ;
62
62
} ;
63
63
64
+ var only = false ;
65
+ test . only = function ( name ) {
66
+ if ( only ) throw new Error ( 'there can only be one only test' ) ;
67
+ results . only ( name ) ;
68
+ only = true ;
69
+ return test . apply ( null , arguments ) ;
70
+ } ;
71
+
64
72
return test ;
65
73
}
Original file line number Diff line number Diff line change @@ -6,14 +6,18 @@ var nextTick = typeof setImmediate !== 'undefined'
6
6
: process . nextTick
7
7
;
8
8
9
- module . exports = function ( test ) {
9
+ module . exports = function ( ) {
10
10
var output = through ( ) ;
11
11
output . pause ( ) ;
12
12
output . queue ( 'TAP version 13\n' ) ;
13
13
14
14
var results = new Results ( output ) ;
15
15
output . push = function ( t ) { results . push ( t ) } ;
16
16
17
+ output . only = function ( name ) {
18
+ results . only = name ;
19
+ } ;
20
+
17
21
nextTick ( function next ( ) {
18
22
var t = results . tests . shift ( ) ;
19
23
if ( ! t && results . running ) return ;
@@ -37,6 +41,13 @@ Results.prototype.push = function (t, parentT) {
37
41
var self = this ;
38
42
var write = function ( s ) { self . stream . queue ( s ) } ;
39
43
t . once ( 'prerun' , function ( ) {
44
+ if ( self . only && self . only !== t . name && ! parentT ) {
45
+ var nt = self . tests . shift ( ) ;
46
+ if ( nt ) nt . run ( )
47
+ else self . close ( ) ;
48
+ return ;
49
+ }
50
+
40
51
self . running ++ ;
41
52
write ( '# ' + t . name + '\n' ) ;
42
53
} ) ;
You can’t perform that action at this time.
0 commit comments