Skip to content

Commit

Permalink
copy docs/ja/core-plugins/unit-mocha.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiwuofficial committed Dec 5, 2019
1 parent df3d8b6 commit 2c04e86
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions docs/ja/core-plugins/unit-mocha.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# @vue/cli-plugin-unit-mocha

> unit-mocha plugin for vue-cli
## Injected Commands

- **`vue-cli-service test:unit`**

Run unit tests with [mochapack](https://github.com/sysgears/mochapack) + [chai](http://chaijs.com/).

**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](https://sysgears.github.io/mochapack/docs/installation/cli-usage.html) are also supported.

## Installing in an Already Created Project

``` sh
vue add unit-mocha
```

0 comments on commit 2c04e86

Please sign in to comment.