Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix assertions
Signed-off-by: Christopher Hiller <boneskull@boneskull.com>
  • Loading branch information
boneskull committed Apr 7, 2018
commit 86681d17046f56badb8f6c394eeb148ee5c1ce30
4 changes: 2 additions & 2 deletions test/reporters/tap.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ describe('TAP reporter', function () {
'not ok ' + countAfterTestEnd + ' ' + expectedTitle + '\n',
' ' + expectedErrorMessage + '\n'
];
stdout.should.deepEqual(expectedArray);
expect(stdout).to.eql(expectedArray);
});
});
describe('if there is an error stack', function () {
Expand Down Expand Up @@ -170,7 +170,7 @@ describe('TAP reporter', function () {
' ' + expectedErrorMessage + '\n',
' ' + expectedStack + '\n'
];
stdout.should.deepEqual(expectedArray);
expect(stdout).to.eql(expectedArray);
});
});
describe('if there is no error stack or error message', function () {
Expand Down