Skip to content

Commit

Permalink
test: enable experimental-vm-modules (#25648)
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice committed Nov 8, 2023
1 parent 99dd587 commit aa699c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -344,8 +344,6 @@ jobs:
- name: Unit tests
shell: bash
env:
NODE_OPTIONS: --experimental-vm-modules
run: |
for shard in ${{ matrix.shards }};
do
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -25,10 +25,10 @@
"generate": "run-s 'generate:*'",
"generate:imports": "node tools/generate-imports.mjs",
"git-check": "node tools/check-git-version.mjs",
"jest": "LOG_LEVEL=fatal GIT_ALLOW_PROTOCOL=file jest --logHeapUsage",
"jest": "NODE_OPTIONS='--experimental-vm-modules' LOG_LEVEL=fatal GIT_ALLOW_PROTOCOL=file jest --logHeapUsage",
"jest:14": "run-s 'jest {@}' --",
"jest:16": "run-s 'jest {@}' --",
"jest-debug": "NODE_OPTIONS=--inspect-brk jest --testTimeout=100000000",
"jest-debug": "NODE_OPTIONS='--inspect-brk --experimental-vm-modules' jest --testTimeout=100000000",
"lint": "run-s ls-lint type-check eslint prettier markdown-lint git-check doc-fence-check",
"lint-fix": "run-s eslint-fix prettier-fix markdown-lint-fix",
"ls-lint": "ls-lint",
Expand Down

0 comments on commit aa699c4

Please sign in to comment.