Skip to content

Commit f30d9c8

Browse files
chore: Add support for ESM in jest (#2606)
1 parent 04ca596 commit f30d9c8

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CONTRIBUTING.md

+6
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,12 @@ npx jest -c jest.motion.config.js src/flashbar
162162
npx jest -c jest.build-tools.config.js build-tools/stylelint
163163
```
164164

165+
Note: when running jest directly you may see errors about `--experimental-vm-modules`, to fix this you can set this NodeJS flag as follows:
166+
167+
```
168+
export NODE_OPTIONS="$NODE_OPTIONS --experimental-vm-modules"
169+
```
170+
165171
### Run visual regression tests
166172

167173
Visual regression tests for the permutation pages are automatically run when opening a pull request in GitHub.

build-tools/tasks/integ.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ module.exports = task('test:integ', async () => {
1414
await waitOn({ resources: ['http://localhost:8080'] });
1515

1616
const files = glob.sync('src/**/__integ__/**/*.test.ts');
17-
await execa('jest', ['-c', 'jest.integ.config.js', ...files], { stdio: 'inherit' });
17+
await execa('jest', ['-c', 'jest.integ.config.js', ...files], {
18+
stdio: 'inherit',
19+
env: { ...process.env, NODE_OPTIONS: '--experimental-vm-modules' },
20+
});
1821

1922
devServer.cancel();
2023
});

build-tools/tasks/motion.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ module.exports = task('test:motion', async () => {
1414
await waitOn({ resources: ['http://localhost:8080'] });
1515

1616
const files = glob.sync('src/**/__motion__/**/*.test.ts');
17-
await execa('jest', ['-c', 'jest.motion.config.js', ...files], { stdio: 'inherit' });
17+
await execa('jest', ['-c', 'jest.motion.config.js', ...files], {
18+
stdio: 'inherit',
19+
env: { ...process.env, NODE_OPTIONS: '--experimental-vm-modules' },
20+
});
1821

1922
devServer.cancel();
2023
});

0 commit comments

Comments
 (0)