You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
877 B
31 lines
877 B
5 months ago
|
module.exports = api => {
|
||
|
api.describeTask({
|
||
|
match: /vue-cli-service test:unit/,
|
||
|
description: 'org.vue.jest.tasks.test.description',
|
||
|
link: 'https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-unit-jest#injected-commands',
|
||
|
prompts: [
|
||
|
{
|
||
|
name: 'watch',
|
||
|
type: 'confirm',
|
||
|
description: 'org.vue.jest.tasks.test.watch'
|
||
|
},
|
||
|
{
|
||
|
name: 'notify',
|
||
|
type: 'confirm',
|
||
|
description: 'org.vue.jest.tasks.test.notify',
|
||
|
when: answers => answers.watch
|
||
|
},
|
||
|
{
|
||
|
name: 'update',
|
||
|
type: 'confirm',
|
||
|
description: 'org.vue.jest.tasks.test.update'
|
||
|
}
|
||
|
],
|
||
|
onBeforeRun: ({ answers, args }) => {
|
||
|
if (answers.watch) args.push('--watch')
|
||
|
if (answers.notify) args.push('--notify')
|
||
|
if (answers.update) args.push('--updateSnapshot')
|
||
|
}
|
||
|
})
|
||
|
}
|