We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e0cfae commit 31f8e58Copy full SHA for 31f8e58
1 file changed
integration_tests/__tests__/__snapshots__/stack_trace.test.js.snap
@@ -74,13 +74,18 @@ exports[`works with custom matchers 1`] = `
74
75
qux
76
77
+ 44 | const bar = () => baz();
78
+ 45 | const baz = () => {
79
+ > 46 | throw Error('qux');
80
+ 47 | };
81
+ 48 |
82
49 | expect(() => {
- 50 | foo();
- > 51 | }).toCustomMatch('test');
- 52 | });
- 53 | });
- 54 |
83
84
+ at __tests__/custom_matcher.test.js:46:13
85
+ at __tests__/custom_matcher.test.js:44:23
86
+ at __tests__/custom_matcher.test.js:43:23
87
+ at __tests__/custom_matcher.test.js:50:7
88
+ at __tests__/custom_matcher.test.js:11:18
89
at __tests__/custom_matcher.test.js:51:8
90
91
"
0 commit comments