• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import '../common/index.mjs';
2import fixtures from '../common/fixtures.js';
3import assert from 'assert';
4import { pathToFileURL } from 'url';
5
6import(pathToFileURL(fixtures.path('/es-modules/tla/parent.mjs')))
7  .then(({ default: order }) => {
8    assert.deepStrictEqual(order, ['order', 'b', 'c', 'd', 'a', 'parent']);
9  });
10