Files
vue-cli/packages/@vue/cli-plugin-unit-mocha/ui.js
2018-06-14 17:21:50 +02:00

19 lines
504 B
JavaScript

module.exports = api => {
api.describeTask({
match: /vue-cli-service test:unit/,
description: '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: 'mocha.tasks.test.watch'
}
],
onBeforeRun: ({ answers, args }) => {
if (answers.watch) args.push('--watch')
}
})
}