Skip to content

Commit

Permalink
add one more test
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Oct 26, 2020
1 parent ccb3212 commit 8b32014
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions e2e/failures/__tests__/duringTests.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ test('Object thrown during test', () => {
throw deepObject;
});

test('Object with stack prop thrown during test', () => {
// eslint-disable-next-line no-throw-literal
throw {stack: 42};
});

test('Error during test', () => {
// eslint-disable-next-line no-undef
doesNotExist.alsoThisNot;
Expand Down

0 comments on commit 8b32014

Please sign in to comment.