1. @vue/cli-plugin-unit-mocha
mocha unit testing plugin for vue-cli
@vue/cli-plugin-unit-mocha
Package: @vue/cli-plugin-unit-mocha
Created by: vuejs
Last modified: Thu, 07 Jul 2022 10:22:07 GMT
Version: 5.0.8
License: MIT
Downloads: 110,700
Repository: https://github.com/vuejs/vue-cli

Install

npm install @vue/cli-plugin-unit-mocha
yarn add @vue/cli-plugin-unit-mocha

@vue/cli-plugin-unit-mocha

unit-mocha plugin for vue-cli

Injected Commands

  • vue-cli-service test:unit

    Run unit tests with mochapack + chai.

    Note the tests are run inside Node.js with browser environment simulated with JSDOM.

    Usage: vue-cli-service test:unit [options] [...files]
    
    Options:
    
      --watch, -w   run in watch mode
      --grep, -g    only run tests matching <pattern>
      --slow, -s    "slow" test threshold in milliseconds
      --timeout, -t timeout threshold in milliseconds
      --bail, -b    bail after first test failure
      --require, -r require the given module before running tests
      --include     include the given module into test bundle
      --inspect-brk Enable inspector to debug the tests
    

    Default files matches are: any files in tests/unit that end in .spec.(ts|js).

    All mochapack command line options are also supported.

Installing in an Already Created Project

 vue add unit-mocha

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin