Skip to content

Commit

Permalink
Merge pull request #19568 from apache/fix-jest
Browse files Browse the repository at this point in the history
fix(test): rename `jest.config.js` to `jest.config.cjs` to fix jest error
  • Loading branch information
Ovilia committed Jan 31, 2024
2 parents 52735fa + fde9fbd commit 4d3bbae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -52,9 +52,9 @@
"release": "npm run build:lib && npm run build:i18n && npm run build && npm run build:esm && npm run build:extension && npm run build:ssr",
"help": "node build/build.js --help",
"test:visual": "node test/runTest/server.js",
"test": "npx jest --config test/ut/jest.config.js",
"test:single": "npx jest --config test/ut/jest.config.js --coverage=false -t",
"test:single:debug": "npx --node-arg=--inspect-brk jest --runInBand --config test/ut/jest.config.js --coverage=false -t",
"test": "npx jest --config test/ut/jest.config.cjs",
"test:single": "npx jest --config test/ut/jest.config.cjs --coverage=false -t",
"test:single:debug": "npx --node-arg=--inspect-brk jest --runInBand --config test/ut/jest.config.cjs --coverage=false -t",
"test:dts": "node build/testDts.js",
"mktest": "node test/build/mktest.js",
"mktest:help": "node test/build/mktest.js -h",
Expand Down
File renamed without changes.

0 comments on commit 4d3bbae

Please sign in to comment.