File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ var canExit = typeof process !== 'undefined' && process
11
11
&& typeof process . exit === 'function'
12
12
;
13
13
14
- exports = module . exports = ( function ( ) {
14
+ module . exports = ( function ( ) {
15
+ var wait = false ;
15
16
var harness ;
16
17
var lazyLoad = function ( ) {
17
18
return getHarness ( ) . apply ( this , arguments ) ;
@@ -90,10 +91,10 @@ function createExitHarness(conf) {
90
91
return harness ;
91
92
}
92
93
93
- exports . createHarness = createHarness ;
94
- exports . Test = Test ;
95
- exports . test = exports ; // tap compat
96
- exports . test . skip = Test . skip ;
94
+ module . exports . createHarness = createHarness ;
95
+ module . exports . Test = Test ;
96
+ module . exports . test = module . exports ; // tap compat
97
+ module . exports . test . skip = Test . skip ;
97
98
98
99
function createHarness ( conf_ ) {
99
100
if ( ! conf_ ) conf_ = { } ;
You can’t perform that action at this time.
0 commit comments