mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-12 01:59:42 -06:00
19 lines
520 B
JavaScript
19 lines
520 B
JavaScript
module.exports = api => {
|
|
api.describeTask({
|
|
match: /vue-cli-service test:unit/,
|
|
description: 'org.vue.mocha.tasks.test.description',
|
|
link: 'https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-unit-mocha#injected-commands',
|
|
prompts: [
|
|
{
|
|
name: 'watch',
|
|
type: 'confirm',
|
|
default: false,
|
|
description: 'org.vue.mocha.tasks.test.watch'
|
|
}
|
|
],
|
|
onBeforeRun: ({ answers, args }) => {
|
|
if (answers.watch) args.push('--watch')
|
|
}
|
|
})
|
|
}
|