We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31f8e58 commit c388a49Copy full SHA for c388a49
1 file changed
integration_tests/__tests__/stack_trace.test.js
@@ -10,6 +10,7 @@
10
11
const runJest = require('../runJest');
12
const {extractSummary} = require('../utils');
13
+const skipOnWindows = require('../../scripts/skip_on_windows');
14
15
describe('Stack Trace', () => {
16
it('prints a stack trace for runtime errors', () => {
@@ -124,6 +125,10 @@ describe('Stack Trace', () => {
124
125
});
126
127
test('works with custom matchers', () => {
128
+ if (skipOnWindows.test()) {
129
+ return;
130
+ }
131
+
132
const {stderr} = runJest('stack_trace', ['custom_matcher.test.js']);
133
134
expect(extractSummary(stderr).rest).toMatchSnapshot();
0 commit comments