blob: 2627dd34fc1f50849c7053f705afa22f70171df8 [file] [edit]
'use strict';
// Tests node::LoadEnvironment() with main_script_source_utf8 works.
const common = require('../common');
const { spawnSyncAndAssert } = require('../common/child_process');
const embedtest = common.resolveBuiltBinary('embedtest');
spawnSyncAndAssert(
embedtest,
['console.log(42)'],
{
trim: true,
stdout: '42',
});