Skip to content

Commit

Permalink
test(ssr): enable --experimental-vm-modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Moore committed Oct 6, 2021
1 parent 79315a0 commit c13c03b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"format": "prettier --write .",
"lint": "eslint packages/*/{src,types}/**",
"test": "run-s test-serve test-build",
"test-serve": "jest",
"test-serve": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"debug-serve": "cross-env VITE_DEBUG_SERVE=1 node --inspect-brk ./node_modules/.bin/jest",
"test-build": "cross-env VITE_TEST_BUILD=1 jest",
"test-build": "cross-env NODE_OPTIONS=--experimental-vm-modules VITE_TEST_BUILD=1 jest",
"debug-build": "cross-env VITE_TEST_BUILD=1 VITE_PRESERVE_BUILD_ARTIFACTS=1 node --inspect-brk ./node_modules/.bin/jest",
"docs": "vitepress dev docs",
"build-docs": "vitepress build docs",
Expand Down

0 comments on commit c13c03b

Please sign in to comment.