We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 441142f commit fb781f5Copy full SHA for fb781f5
packages/integration-test-app/runner/lib/IntegrationTestRunner.ts
@@ -82,9 +82,7 @@ export default class IntegrationTestRunner {
82
}:${frame.column})`,
83
)
84
.join();
85
- fail(err);
86
- break;
87
-
+ throw err;
88
case 'failed':
89
failWithoutContext('TestModule.markTestPassed(false) was called');
90
break;
@@ -136,7 +134,7 @@ export default class IntegrationTestRunner {
136
134
function failWithoutContext(message: string) {
137
135
const err = new Error(message);
138
err.stack = '\n';
139
140
}
141
142
// "Borrowed" from LogBoxInspectorStackFrame
0 commit comments