forked from vuejs/vue-cli
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
copy docs/ja/core-plugins/unit-mocha.md
- Loading branch information
1 parent
df3d8b6
commit 2c04e86
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |