mirror of
https://github.com/nodejs/node.git
synced 2025-12-27 23:41:14 +00:00
The test has been flaking due to either timeout or calling uv_async_send on a closing/closed handle. As the test squeezes too many independent test cases in one file, split it up to avoid timing out on slower machines and aid debugging. PR-URL: https://github.com/nodejs/node/pull/60491 Refs: https://github.com/nodejs/reliability/blob/main/reports/2025-10-29.md Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
11 lines
393 B
JavaScript
11 lines
393 B
JavaScript
// Test WASM module with invalid export name starting with 'wasm:'
|
|
import '../common/index.mjs';
|
|
import { spawnSyncAndAssert } from '../common/child_process.js';
|
|
import * as fixtures from '../common/fixtures.js';
|
|
|
|
spawnSyncAndAssert(
|
|
process.execPath,
|
|
['--no-warnings', fixtures.path('es-modules/test-wasm-reject-wasm-export-names.mjs')],
|
|
{ status: 1, stderr: /Invalid Wasm export/ }
|
|
);
|