From 2c04e8639f5afd80281c7d7e3da11bd8728edfce Mon Sep 17 00:00:00 2001 From: tiwuofficial Date: Thu, 5 Dec 2019 15:39:03 +0900 Subject: [PATCH] copy docs/ja/core-plugins/unit-mocha.md --- docs/ja/core-plugins/unit-mocha.md | 36 ++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 docs/ja/core-plugins/unit-mocha.md diff --git a/docs/ja/core-plugins/unit-mocha.md b/docs/ja/core-plugins/unit-mocha.md new file mode 100644 index 0000000000..a450c683e1 --- /dev/null +++ b/docs/ja/core-plugins/unit-mocha.md @@ -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 + --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 +```