PR-URL: https://github.com/nodejs/node/pull/61228 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
14 lines
421 B
JavaScript
14 lines
421 B
JavaScript
// Test that WASM modules support top-level execution
|
|
import '../common/index.mjs';
|
|
import { spawnSyncAndAssert } from '../common/child_process.js';
|
|
import * as fixtures from '../common/fixtures.mjs';
|
|
|
|
spawnSyncAndAssert(
|
|
process.execPath,
|
|
['--no-warnings', fixtures.path('es-modules/top-level-wasm.wasm')],
|
|
{
|
|
stdout: '[Object: null prototype] { prop: \'hello world\' }',
|
|
stderr: '',
|
|
trim: true,
|
|
}
|
|
);
|