11cb0ef41Sopenharmony_ciimport '../common/index.mjs'; 21cb0ef41Sopenharmony_ciimport fixtures from '../common/fixtures.js'; 31cb0ef41Sopenharmony_ciimport assert from 'assert'; 41cb0ef41Sopenharmony_ciimport { pathToFileURL } from 'url'; 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ciimport(pathToFileURL(fixtures.path('/es-modules/tla/parent.mjs'))) 71cb0ef41Sopenharmony_ci .then(({ default: order }) => { 81cb0ef41Sopenharmony_ci assert.deepStrictEqual(order, ['order', 'b', 'c', 'd', 'a', 'parent']); 91cb0ef41Sopenharmony_ci }); 10