@dnlup/vue-cli-plugin-unit-ava
Version:
@vue/cli plugin to run unit tests with ava
33 lines (32 loc) • 601 B
JavaScript
module.exports = [
{
name: 'avaConfigLocation',
type: 'list',
message: 'Where do you want to store ava configuration?',
choices: [
'ava.config.js',
'package.json'
],
default: 'ava.config.js'
},
{
name: 'uiFramework',
type: 'list',
message: 'Do you want to use a UI Framework?',
choices: [
'No',
'Vuetify'
],
default: 'No'
},
{
name: 'styles',
type: 'checkbox',
message: 'Select the type of style files you would like to load, if any',
choices: [
'css',
'stylus'
],
default: []
}
]