forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest-require-module-preload.js
More file actions
113 lines (106 loc) · 2.14 KB
/
test-require-module-preload.js
File metadata and controls
113 lines (106 loc) · 2.14 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
'use strict';
require('../common');
const { spawnSyncAndAssert } = require('../common/child_process');
const { fixturesDir } = require('../common/fixtures');
function testPreload(preloadFlag) {
// Test named exports.
{
spawnSyncAndAssert(
process.execPath,
[
'--experimental-require-module',
preloadFlag,
'./es-module-loaders/module-named-exports.mjs',
'./printA.js',
],
{
cwd: fixturesDir
},
{
stdout: 'A',
trim: true,
}
);
}
// Test ESM that import ESM.
{
spawnSyncAndAssert(
process.execPath,
[
'--experimental-require-module',
preloadFlag,
'./es-modules/import-esm.mjs',
'./printA.js',
],
{
cwd: fixturesDir
},
{
stdout: /^world\s+A$/,
trim: true,
}
);
}
// Test ESM that import CJS.
{
spawnSyncAndAssert(
process.execPath,
[
'--experimental-require-module',
preloadFlag,
'./es-modules/cjs-exports.mjs',
'./printA.js',
],
{
cwd: fixturesDir
},
{
stdout: /^ok\s+A$/,
trim: true,
}
);
}
// Test ESM that require() CJS.
// Can't use the common/index.mjs here because that checks the globals, and
// -r injects a bunch of globals.
{
spawnSyncAndAssert(
process.execPath,
[
'--experimental-require-module',
preloadFlag,
'./es-modules/require-cjs.mjs',
'./printA.js',
],
{
cwd: fixturesDir
},
{
stdout: /^world\s+A$/,
trim: true,
}
);
}
}
testPreload('--require');
testPreload('--import');
// Test "type": "module" and "main" field in package.json, this is only for --require because
// --import does not support extension-less preloads.
{
spawnSyncAndAssert(
process.execPath,
[
'--experimental-require-module',
'--require',
'./es-modules/package-type-module',
'./printA.js',
],
{
cwd: fixturesDir
},
{
stdout: /^package-type-module\s+A$/,
trim: true,
}
);
}