Skip to content

Commit 4b52e9a

Browse files
committed
remove redundant tests in test/throws.js (assertion unchanged! Passes.) for tape-testing#312 ... see: dwyl/learn-tape#2 (comment)
1 parent 27ce042 commit 4b52e9a

File tree

1 file changed

+2
-22
lines changed

1 file changed

+2
-22
lines changed

test/throws.js

+2-22
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,8 @@ function getNonFunctionMessage(fn) {
1414
}
1515
}
1616

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, /RegExp/, 'regex with no anchors');
24-
t.throws(fn, /^TypeError: Reg/, 'regex with starting anchor');
25-
t.throws(fn, /RegExp$/, 'regex with ending anchor');
26-
t.throws(fn, /^TypeError: RegExp$/, '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-
3517
tap.test('failures', function (tt) {
36-
// tt.plan(1);
18+
tt.plan(1);
3719

3820
var test = tape.createHarness();
3921
test.createStream().pipe(concat(function (body) {
@@ -117,7 +99,6 @@ tap.test('failures', function (tt) {
11799
+ '# pass 0\n'
118100
+ '# fail 9\n'
119101
);
120-
tt.end();
121102
}));
122103

123104
test('non functions', function (t) {
@@ -136,5 +117,4 @@ tap.test('failures', function (tt) {
136117
t.plan(1);
137118
t.throws(function () {});
138119
});
139-
140-
});
120+
});

0 commit comments

Comments
 (0)