Skip to content

Commit

Permalink
fix(): done not getting called for a test
Browse files Browse the repository at this point in the history
  • Loading branch information
Sid200026 committed Jan 24, 2022
1 parent 518c643 commit a66db04
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/cli/verbose.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ describe('newman run --verbose', function () {
_.forEach(endTags, function (str) {
expect(stdout).to.contain(str);
});
});
// eslint-disable-next-line max-len
exec('node ./bin/newman.js run test/fixtures/run/large-output-get-request.json --verbose --reporter-cli-truncate-body-output INFINITY', function (_code, stdout) {
_.forEach(endTags, function (str) {
expect(stdout).to.contain(str);
});
// eslint-disable-next-line max-len
exec('node ./bin/newman.js run test/fixtures/run/large-output-get-request.json --verbose --reporter-cli-truncate-body-output INFINITY', function (_code, stdout) {
_.forEach(endTags, function (str) {
expect(stdout).to.contain(str);
});

done();
done();
});
});
});

Expand Down

0 comments on commit a66db04

Please sign in to comment.