We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d6713e commit 4e8d6c8Copy full SHA for 4e8d6c8
e2e/test-runner.js
@@ -40,11 +40,11 @@ function runTest(dir) {
40
log('Removing node_modules')
41
fs.removeSync(`${resolvedPath}/node_modules`)
42
43
- log('Removing package-lock.json')
44
- fs.removeSync(`${resolvedPath}/package-lock.json`)
+ log('Removing yarn.lock')
+ fs.removeSync(`${resolvedPath}/yarn.lock`)
45
46
log('Installing node_modules')
47
- run('yarn add --silent')
+ run('yarn install --silent')
48
}
49
50
// For tests that need vue-jest to successfully `require.resolve()` a file in
0 commit comments