Skip to content

Commit

Permalink
adapt existing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
juergba committed Nov 3, 2019
1 parent 20bc5e1 commit 5e40b1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/runner.spec.js
Expand Up @@ -811,9 +811,9 @@ describe('Runner', function() {
sandbox.stub(runnable, 'isPending').returns(true);
});

it('should not attempt to fail', function() {
it('should attempt to fail', function() {
runner.uncaught(err);
expect(runner.fail, 'was not called');
expect(runner.fail, 'was called once');
});
});

Expand Down

0 comments on commit 5e40b1c

Please sign in to comment.