Skip to content

Commit

Permalink
fix missing assertion in an "options" integration test
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Hiller <boneskull@boneskull.com>
  • Loading branch information
boneskull committed Apr 23, 2018
1 parent 0372781 commit 03b3c4a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/integration/options.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,9 @@ describe('options', function() {
done(err);
return;
}
expect(res, 'to have failed').and(
'to have run test',
'should only display this error'
);
expect(res, 'to have failed')
.and('to have failed test count', 1)
.and('to have run test', 'should only display this error');
done();
});
});
Expand Down

0 comments on commit 03b3c4a

Please sign in to comment.