File tree 1 file changed +2
-22
lines changed
1 file changed +2
-22
lines changed Original file line number Diff line number Diff line change @@ -14,26 +14,8 @@ function getNonFunctionMessage(fn) {
14
14
}
15
15
}
16
16
17
- tape ( 'throws' , function ( t ) {
18
- t . throws ( fn ) ;
19
- t . end ( ) ;
20
- } ) ;
21
-
22
- tape ( 'throws (RegExp match)' , function ( t ) {
23
- t . throws ( fn , / R e g E x p / , 'regex with no anchors' ) ;
24
- t . throws ( fn , / ^ T y p e E r r o r : R e g / , 'regex with starting anchor' ) ;
25
- t . throws ( fn , / R e g E x p $ / , 'regex with ending anchor' ) ;
26
- t . throws ( fn , / ^ T y p e E r r o r : R e g E x p $ / , 'regex with both anchors' ) ;
27
- t . end ( ) ;
28
- } ) ;
29
-
30
- tape ( 'throws (Function match)' , function ( t ) {
31
- t . throws ( fn , TypeError ) ;
32
- t . end ( ) ;
33
- } ) ;
34
-
35
17
tap . test ( 'failures' , function ( tt ) {
36
- // tt.plan(1);
18
+ tt . plan ( 1 ) ;
37
19
38
20
var test = tape . createHarness ( ) ;
39
21
test . createStream ( ) . pipe ( concat ( function ( body ) {
@@ -117,7 +99,6 @@ tap.test('failures', function (tt) {
117
99
+ '# pass 0\n'
118
100
+ '# fail 9\n'
119
101
) ;
120
- tt . end ( ) ;
121
102
} ) ) ;
122
103
123
104
test ( 'non functions' , function ( t ) {
@@ -136,5 +117,4 @@ tap.test('failures', function (tt) {
136
117
t . plan ( 1 ) ;
137
118
t . throws ( function ( ) { } ) ;
138
119
} ) ;
139
-
140
- } ) ;
120
+ } ) ;
You can’t perform that action at this time.
0 commit comments