forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstackTrace.test.ts
115 lines (90 loc) · 3.49 KB
/
stackTrace.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import {extractSummary} from '../Utils';
import runJest from '../runJest';
describe('Stack Trace', () => {
it('prints a stack trace for runtime errors', () => {
const {exitCode, stderr} = runJest('stack-trace', ['runtimeError.test.js']);
expect(extractSummary(stderr).summary).toMatchSnapshot();
expect(exitCode).toBe(1);
expect(stderr).toMatch(
/ReferenceError: thisIsARuntimeError is not defined/,
);
expect(stderr).toMatch(/> 10 \| thisIsARuntimeError\(\);/);
expect(stderr).toMatch(
/\s+at\s(?:.+?)\s\(__tests__\/runtimeError.test\.js/,
);
});
it('does not print a stack trace for runtime errors when --noStackTrace is given', () => {
const {exitCode, stderr} = runJest('stack-trace', [
'runtimeError.test.js',
'--noStackTrace',
]);
expect(extractSummary(stderr).summary).toMatchSnapshot();
expect(exitCode).toBe(1);
expect(stderr).toMatch(
/ReferenceError: thisIsARuntimeError is not defined/,
);
expect(stderr).not.toMatch(
/\s+at\s(?:.+?)\s\(__tests__\/runtimeError.test\.js/,
);
});
it('prints a stack trace for matching errors', () => {
const {exitCode, stderr} = runJest('stack-trace', ['stackTrace.test.js']);
expect(extractSummary(stderr).summary).toMatchSnapshot();
expect(exitCode).toBe(1);
expect(stderr).toMatch(/\s+at\s(?:.+?)\s\(__tests__\/stackTrace.test\.js/);
});
it('does not print a stack trace for matching errors when --noStackTrace is given', () => {
const {exitCode, stderr} = runJest('stack-trace', [
'stackTrace.test.js',
'--noStackTrace',
]);
expect(extractSummary(stderr).summary).toMatchSnapshot();
expect(exitCode).toBe(1);
expect(stderr).not.toMatch(
/\s+at\s(?:.+?)\s\(__tests__\/stackTrace.test\.js/,
);
});
it('prints a stack trace for errors', () => {
const {exitCode, stderr} = runJest('stack-trace', ['testError.test.js']);
expect(extractSummary(stderr).summary).toMatchSnapshot();
expect(exitCode).toBe(1);
expect(stderr).toMatch(/this is unexpected\./);
expect(stderr).toMatch(/this is a string\./);
expect(stderr).toMatch(/\s+at\s(?:.+?)\s\(__tests__\/testError.test\.js/);
// Make sure we show Jest's jest-resolve as part of the stack trace
expect(stderr).toMatch(
/Cannot find module 'this-module-does-not-exist' from '__tests__\/testError\.test\.js'/,
);
expect(stderr).toMatch(
/\s+at\s(?:.+?)\s\((?:.+?)jest-resolve\/build\/index\.js/,
);
});
it('prints a stack trace for errors without message in stack trace', () => {
const {exitCode, stderr} = runJest('stack-trace', [
'stackTraceWithoutMessage.test.js',
]);
expect(extractSummary(stderr).summary).toMatchSnapshot();
expect(exitCode).toBe(1);
expect(stderr).toMatch(/important message/);
expect(stderr).toMatch(
/\s+at\s(?:.+?)\s\(__tests__\/stackTraceWithoutMessage.test\.js/,
);
});
it('does not print a stack trace for errors when --noStackTrace is given', () => {
const {exitCode, stderr} = runJest('stack-trace', [
'testError.test.js',
'--noStackTrace',
]);
expect(extractSummary(stderr).summary).toMatchSnapshot();
expect(exitCode).toBe(1);
expect(stderr).not.toMatch(
/\s+at\s(?:.+?)\s\(__tests__\/testError.test\.js/,
);
});
});