Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
snitin315 committed Oct 26, 2020
1 parent 12b5288 commit 182555a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion e2e/__tests__/__snapshots__/failures.test.ts.snap
Expand Up @@ -188,9 +188,19 @@ FAIL __tests__/duringTests.test.js
● Object with stack prop thrown during test
42
thrown: Object {
"stack": 42,
}
30 | });
31 |
> 32 | test('Object with stack prop thrown during test', () => {
| ^
33 | // eslint-disable-next-line no-throw-literal
34 | throw {stack: 42};
35 | });
at Object.test (__tests__/duringTests.test.js:32:1)
● Error during test
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-jasmine2/src/expectationResultFactory.ts
Expand Up @@ -43,7 +43,7 @@ function stackFormatter(
}

if (options.error) {
if (options.error.stack) {
if ( typeof options.error.stack === 'string') {
return options.error.stack;
}

Expand Down

0 comments on commit 182555a

Please sign in to comment.