Skip to content

Commit 4e8d6c8

Browse files
committed
chore: update test run script
1 parent 7d6713e commit 4e8d6c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

e2e/test-runner.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ function runTest(dir) {
4040
log('Removing node_modules')
4141
fs.removeSync(`${resolvedPath}/node_modules`)
4242

43-
log('Removing package-lock.json')
44-
fs.removeSync(`${resolvedPath}/package-lock.json`)
43+
log('Removing yarn.lock')
44+
fs.removeSync(`${resolvedPath}/yarn.lock`)
4545

4646
log('Installing node_modules')
47-
run('yarn add --silent')
47+
run('yarn install --silent')
4848
}
4949

5050
// For tests that need vue-jest to successfully `require.resolve()` a file in

0 commit comments

Comments
 (0)