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 9b073f8 commit 76c1736Copy full SHA for 76c1736
packages/@vue/cli/lib/util/ProjectPackageManager.js
@@ -243,9 +243,9 @@ class PackageManager {
243
async install () {
244
if (process.env.VUE_CLI_TEST) {
245
try {
246
- return this.runCommand([PACKAGE_MANAGER_CONFIG[this.bin].install, '--offline'])
+ await this.runCommand([PACKAGE_MANAGER_CONFIG[this.bin].install, '--offline'])
247
} catch (e) {
248
- this.runCommand([PACKAGE_MANAGER_CONFIG[this.bin].install])
+ await this.runCommand([PACKAGE_MANAGER_CONFIG[this.bin].install])
249
}
250
251
0 commit comments