Skip to content

Commit

Permalink
fix JASMINE tests
Browse files Browse the repository at this point in the history
  • Loading branch information
liuxingbaoyu committed Oct 11, 2022
1 parent f45b04e commit c8544d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/jest-each/src/bind.ts
Expand Up @@ -57,9 +57,9 @@ export default function bind<EachCallback extends Global.TestCallback>(
),
);
} catch (e: any) {
const err = new Error(e.message);
const err = new Error('');
err.stack = error.stack?.replace(/^Error: /s, e.message);
err.name = e.name;
err.name = '';

return cb(title, () => {
throw err;
Expand Down

0 comments on commit c8544d1

Please sign in to comment.