11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst common = require('../common'); 41cb0ef41Sopenharmony_ciconst { Script, compileFunction } = require('vm'); 51cb0ef41Sopenharmony_ciconst assert = require('assert'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciassert( 81cb0ef41Sopenharmony_ci !process.execArgv.includes('--experimental-vm-modules'), 91cb0ef41Sopenharmony_ci 'This test must be run without --experimental-vm-modules'); 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_ciassert.rejects(async () => { 121cb0ef41Sopenharmony_ci const script = new Script('import("fs")', { 131cb0ef41Sopenharmony_ci importModuleDynamically: common.mustNotCall(), 141cb0ef41Sopenharmony_ci }); 151cb0ef41Sopenharmony_ci const imported = script.runInThisContext(); 161cb0ef41Sopenharmony_ci await imported; 171cb0ef41Sopenharmony_ci}, { 181cb0ef41Sopenharmony_ci code: 'ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG' 191cb0ef41Sopenharmony_ci}).then(common.mustCall()); 201cb0ef41Sopenharmony_ci 211cb0ef41Sopenharmony_ciassert.rejects(async () => { 221cb0ef41Sopenharmony_ci const imported = compileFunction('return import("fs")', [], { 231cb0ef41Sopenharmony_ci importModuleDynamically: common.mustNotCall(), 241cb0ef41Sopenharmony_ci })(); 251cb0ef41Sopenharmony_ci await imported; 261cb0ef41Sopenharmony_ci}, { 271cb0ef41Sopenharmony_ci code: 'ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG' 281cb0ef41Sopenharmony_ci}).then(common.mustCall()); 29