-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
/
Copy pathnativeEsm.test.ts
81 lines (63 loc) · 2.25 KB
/
nativeEsm.test.ts
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
/**
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import {resolve} from 'path';
import {onNodeVersions} from '@jest/test-utils';
import {extractSummary, runYarnInstall} from '../Utils';
import runJest, {getConfig} from '../runJest';
// for unknown reason the "runs test with native ESM" test occasionally ends up
// with process being killed with SIGSEGV (Segmentation fault) signal
jest.retryTimes(3);
const DIR = resolve(__dirname, '../native-esm');
beforeAll(() => {
runYarnInstall(DIR);
});
test('test config is without transform', () => {
const {configs} = getConfig(DIR);
expect(configs).toHaveLength(1);
expect(configs[0].transform).toEqual([]);
});
test('runs test with native ESM', () => {
const {exitCode, stderr, stdout} = runJest(DIR, ['native-esm.test.js'], {
nodeOptions: '--experimental-vm-modules --no-warnings',
});
const {summary} = extractSummary(stderr);
expect(summary).toMatchSnapshot();
expect(stdout).toBe('');
expect(exitCode).toBe(0);
});
test('supports top-level await', () => {
const {exitCode, stderr, stdout} = runJest(DIR, ['native-esm.tla.test.js'], {
nodeOptions: '--experimental-vm-modules --no-warnings',
});
const {summary} = extractSummary(stderr);
expect(summary).toMatchSnapshot();
expect(stdout).toBe('');
expect(exitCode).toBe(0);
});
// minimum version supported by discord.js
onNodeVersions('>=16.9.0', () => {
test('support re-exports from CJS of dual packages', () => {
const {exitCode, stderr, stdout} = runJest(
DIR,
['native-esm-deep-cjs-reexport.test.js'],
{nodeOptions: '--experimental-vm-modules --no-warnings'},
);
const {summary} = extractSummary(stderr);
expect(summary).toMatchSnapshot();
expect(stdout).toBe('');
expect(exitCode).toBe(0);
});
});
test('runs Wasm test with native ESM', () => {
const {exitCode, stderr, stdout} = runJest(DIR, ['native-esm-wasm.test.js'], {
nodeOptions: '--experimental-vm-modules --no-warnings',
});
const {summary} = extractSummary(stderr);
expect(summary).toMatchSnapshot();
expect(stdout).toBe('');
expect(exitCode).toBe(0);
});