Skip to content

Commit 3dd336f

Browse files
committed
TAP integration tests use reporters fixture instead of uncaught
1 parent fa35ed8 commit 3dd336f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/integration/reporters.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,14 +190,14 @@ describe('reporters', function() {
190190
runFixtureAndValidateOutput('passing.fixture.js', {
191191
numTests: 2
192192
});
193-
runFixtureAndValidateOutput('uncaught.fixture.js', {
194-
numTests: 2
193+
runFixtureAndValidateOutput('reporters.fixture.js', {
194+
numTests: 12
195195
});
196196
});
197197

198198
it('places exceptions correctly in YAML blocks', function(done) {
199199
var args = ['--reporter=tap'];
200-
run('uncaught.fixture.js', args, function(err, res) {
200+
run('reporters.fixture.js', args, function(err, res) {
201201
if (err) {
202202
done(err);
203203
return;

0 commit comments

Comments
 (0)