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 096ee8e commit 2538588Copy full SHA for 2538588
packages/npm-packages/ruby-wasm-wasi/tools/run-test-unit.mjs
@@ -201,7 +201,6 @@ const test = async (instantiate) => {
201
const rootTestFile = "/__root__/test/test_unit.rb";
202
const { vm, wasi } = await instantiate(rootTestFile);
203
204
- Error.stackTraceLimit = Infinity;
205
206
await vm.evalAsync(`
207
require 'test/unit'
@@ -212,6 +211,7 @@ const test = async (instantiate) => {
212
211
};
213
214
const main = async () => {
+ Error.stackTraceLimit = Infinity;
215
if (process.env.ENABLE_COMPONENT_TESTS && process.env.ENABLE_COMPONENT_TESTS !== 'false') {
216
await test(instantiateComponent);
217
} else {
0 commit comments