Skip to content

Commit

Permalink
TAP integration tests use reporters fixture instead of uncaught
Browse files Browse the repository at this point in the history
  • Loading branch information
mollstam committed Aug 9, 2018
1 parent fa35ed8 commit 3dd336f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/integration/reporters.spec.js
Expand Up @@ -190,14 +190,14 @@ describe('reporters', function() {
runFixtureAndValidateOutput('passing.fixture.js', {
numTests: 2
});
runFixtureAndValidateOutput('uncaught.fixture.js', {
numTests: 2
runFixtureAndValidateOutput('reporters.fixture.js', {
numTests: 12
});
});

it('places exceptions correctly in YAML blocks', function(done) {
var args = ['--reporter=tap'];
run('uncaught.fixture.js', args, function(err, res) {
run('reporters.fixture.js', args, function(err, res) {
if (err) {
done(err);
return;
Expand Down

0 comments on commit 3dd336f

Please sign in to comment.