ic-mops 0.26.4 → 0.26.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.ts +0 -0
- package/commands/test/reporters/compact-reporter.ts +1 -1
- package/commands/test/test.ts +1 -1
- package/dist/cli-local.d.ts +2 -0
- package/dist/cli-local.js +2 -0
- package/dist/cli.js +0 -0
- package/dist/commands/test/test.js +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/cli.ts
CHANGED
|
File without changes
|
package/commands/test/test.ts
CHANGED
|
@@ -147,7 +147,7 @@ export async function testWithReporter(reporter: Reporter, filter = '', mode: Te
|
|
|
147
147
|
return;
|
|
148
148
|
}
|
|
149
149
|
// run
|
|
150
|
-
let proc = spawn('wasmtime', [wasmFile]);
|
|
150
|
+
let proc = spawn('wasmtime', ['--max-wasm-stack=2000000', wasmFile]);
|
|
151
151
|
await pipeMMF(proc, mmf);
|
|
152
152
|
}).finally(() => {
|
|
153
153
|
fs.rmSync(wasmFile, {force: true});
|
package/dist/cli.js
CHANGED
|
File without changes
|
|
@@ -123,7 +123,7 @@ export async function testWithReporter(reporter, filter = '', mode = 'interprete
|
|
|
123
123
|
return;
|
|
124
124
|
}
|
|
125
125
|
// run
|
|
126
|
-
let proc = spawn('wasmtime', [wasmFile]);
|
|
126
|
+
let proc = spawn('wasmtime', ['--max-wasm-stack=2000000', wasmFile]);
|
|
127
127
|
await pipeMMF(proc, mmf);
|
|
128
128
|
}).finally(() => {
|
|
129
129
|
fs.rmSync(wasmFile, { force: true });
|
package/dist/package.json
CHANGED