Files
node/test/es-module/test-esm-wasm-reject-wasm-js-import-names.mjs
2026-01-01 23:48:26 +00:00

11 lines
405 B
JavaScript

// Test WASM module with invalid import name starting with 'wasm-js:'
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/test-wasm-reject-wasm-js-import-names.mjs')],
{ status: 1, stderr: /Invalid Wasm import name/ }
);