We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc7cb1f commit c988dbbCopy full SHA for c988dbb
e2e/test-runner.js
@@ -36,14 +36,14 @@ function runTest(dir) {
36
log('Removing node_modules')
37
fs.removeSync(`${resolvedPath}/node_modules`)
38
39
- log('Removing package-lock.json')
40
- fs.removeSync(`${resolvedPath}/package-lock.json`)
+ log('Removing yarn-lock.json')
+ fs.removeSync(`${resolvedPath}/yarn-lock.json`)
41
42
log('Installing node_modules')
43
- run('npm install --silent')
+ run('yarn install --silent')
44
45
log('Running tests')
46
- run('npm run test')
+ run('yarn test')
47
48
success(`(${dir}) Complete`)
49
}
0 commit comments