11cb0ef41Sopenharmony_ciexport async function resolve(specifier, { parentURL, importAttributes }, next) { 21cb0ef41Sopenharmony_ci if (parentURL && specifier === '../fixtures/es-modules/test-esm-ok.mjs') { 31cb0ef41Sopenharmony_ci return { 41cb0ef41Sopenharmony_ci shortCircuit: true, 51cb0ef41Sopenharmony_ci url: specifier, 61cb0ef41Sopenharmony_ci importAttributes, 71cb0ef41Sopenharmony_ci }; 81cb0ef41Sopenharmony_ci } 91cb0ef41Sopenharmony_ci return next(specifier); 101cb0ef41Sopenharmony_ci} 11