Run unit tests in a @vue/cli project with Karma and Mocha
$ vue add vue-cli-plugin-unit-karmajsIf you want to install it using npm:
$ npm install vue-cli-plugin-unit-karmajs
$ vue invoke vue-cli-plugin-unit-karmajsIf you don't want to use vue invoke, install required devDependencies which are present in generator/index.js.
vue-cli-service test:unit [options] [...files]
- 
vue-cli-service test:unitDefault files matches are: any files in tests/unit that end in
.spec.js.Command line options:
--watch, -w: run in watch mode
 
NOTE: If you want to override default karma settings, you can use the pluginOptions.karma key in vue.config.js like this:
pluginOptions: {
  karma: {
    files: [ 'tests/**/*.spec.js' ]
  }
}This module is inspired from vue-cli-plugin-unit-karma which is not actively maintained now.