Skip to content

Commit 69714cd

Browse files
committed
log test
1 parent 1366811 commit 69714cd

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

e2e/__tests__/nativeEsm.test.ts

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,14 @@ onNodeVersions('^12.16.0 || >=13.7.0', () => {
2929

3030
const {summary} = extractSummary(stderr);
3131

32-
expect(wrap(summary)).toMatchSnapshot();
33-
expect(stdout).toBe('');
34-
expect(exitCode).toBe(0);
32+
try {
33+
expect(wrap(summary)).toMatchSnapshot();
34+
expect(stdout).toBe('');
35+
expect(exitCode).toBe(0);
36+
} catch (e) {
37+
console.log(stderr);
38+
throw e;
39+
}
3540
});
3641
});
3742

0 commit comments

Comments
 (0)