/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v25.8.2
test/sea/test-single-executable-application-use-code-cache.js
36 строк
777 B
Joyee Cheung
test: migrate to --build-sea in existing SEA tests
25 янв 2026, 02:07
Не верифицирован
25 янв 2026, 02:07
75c06bc
Код
Авторство
О чём код?
'use strict'; require('../common'); const { buildSEA, skipIfBuildSEAIsNotSupported, } = require('../common/sea'); skipIfBuildSEAIsNotSupported(); // This tests the creation of a single executable application which uses the // V8 code cache. const tmpdir = require('../common/tmpdir'); const { spawnSyncAndAssert } = require('../common/child_process'); const { join } = require('path'); const fixtures = require('../common/fixtures'); tmpdir.refresh(); const outputFile = buildSEA(fixtures.path('sea', 'use-code-cache')); spawnSyncAndAssert( outputFile, [ '-a', '--b=c', 'd' ], { env: { COMMON_DIRECTORY: join(__dirname, '..', 'common'), NODE_DEBUG_NATIVE: 'SEA', ...process.env, }, }, { stdout: 'Hello, world! 😊\n', });