11cb0ef41Sopenharmony_ci// Flags: --experimental-loader ./test/fixtures/es-module-loaders/loader-unknown-builtin-module.mjs 21cb0ef41Sopenharmony_ciimport { expectsError, mustCall } from '../common/index.mjs'; 31cb0ef41Sopenharmony_ciimport assert from 'assert'; 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_ciconst unknownBuiltinModule = 'node:unknown-builtin-module'; 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciimport(unknownBuiltinModule) 81cb0ef41Sopenharmony_ci.then(assert.fail, expectsError({ 91cb0ef41Sopenharmony_ci code: 'ERR_UNKNOWN_BUILTIN_MODULE', 101cb0ef41Sopenharmony_ci message: `No such built-in module: ${unknownBuiltinModule}` 111cb0ef41Sopenharmony_ci})) 121cb0ef41Sopenharmony_ci.then(mustCall()); 13