summaryrefslogtreecommitdiff
path: root/test/es-module/test-esm-initialization.mjs
blob: aa946a50152d40d24d0fba9f2b88c876cd35e1d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { spawnPromisified } from '../common/index.mjs';
import * as fixtures from '../common/fixtures.mjs';
import assert from 'node:assert';
import { execPath } from 'node:process';
import { describe, it } from 'node:test';


describe('ESM: ensure initialization happens only once', { concurrency: true }, () => {
  it(async () => {
    const { code, stderr, stdout } = await spawnPromisified(execPath, [
      '--loader',
      fixtures.fileURL('es-module-loaders', 'loader-resolve-passthru.mjs'),
      '--no-warnings',
      fixtures.path('es-modules', 'runmain.mjs'),
    ]);

    // Length minus 1 because the first match is the needle.
    const resolveHookRunCount = (stdout.match(/resolve passthru/g)?.length ?? 0) - 1;

    assert.strictEqual(stderr, '');
    /**
     * resolveHookRunCount = 2:
     * 1. fixtures/…/runmain.mjs
     * 2. node:module (imported by fixtures/…/runmain.mjs)
     */
    assert.strictEqual(resolveHookRunCount, 2);
    assert.strictEqual(code, 0);
  });
});