Skip to content

Commit a88fa5f

Browse files
committed
refactor: fix tests (service.run should return Promise)
1 parent 69a6b0b commit a88fa5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@vue/cli-service/lib/Service.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ module.exports = class Service {
126126
rawArgv.shift()
127127
}
128128
const { fn } = command
129-
await fn(args, rawArgv)
129+
return fn(args, rawArgv)
130130
}
131131

132132
resolveChainableWebpackConfig () {

0 commit comments

Comments
 (0)