/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v26.3.1
test/module-hooks/test-async-loader-hooks-initialize-process-exit.mjs
23 строки
562 B
Joyee Cheung
test: split test-esm-loader-hooks
16 янв 2026, 17:30
Не верифицирован
16 янв 2026, 17:30
3da4dce
Код
Авторство
О чём код?
// Test that it should be fine to call `process.exit` from a `initialize` hook import '../common/index.mjs'; import { execPath } from 'node:process'; import fixtures from '../common/fixtures.js'; import { spawnSyncAndExit } from '../common/child_process.js'; spawnSyncAndExit( execPath, [ '--no-warnings', '--experimental-loader', fixtures.fileURL('es-module-loaders/loader-initialize-exit.mjs'), '--input-type=module', '--eval', 'import "node:os"', ], { status: 42, signal: null, stdout: '', stderr: '', }, );