Skip to content

Commit 2338f99

Browse files
committed
test: remove unnecessary presets
1 parent c6ddba8 commit 2338f99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/@vuepress/test-utils/lib/createJestRunner.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ module.exports = function createJestRunner (jestArgs) {
77
return async function () {
88
let args = [...jestArgs, ...rawArgs]
99
const execArgv = getChildProcesExecArgv()
10-
args = [...execArgv, 'node_modules/.bin/jest', '--runInBand', ...args]
10+
args = [...execArgv, 'node_modules/.bin/jest', ...args]
1111
console.log(`running node with args: ${args.join(' ')}`)
12-
await execa('node', [...execArgv, 'node_modules/.bin/jest', ...args], {
12+
await execa('node', args, {
1313
stdio: 'inherit'
1414
})
1515
}

0 commit comments

Comments
 (0)