Package Exports
- @vue/cli-plugin-unit-jest
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@vue/cli-plugin-unit-jest) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@vue/cli-plugin-unit-jest
unit-jest plugin for vue-cli
Injected Commands
vue-cli-service test:unitRun unit tests with Jest. Default
testMatchis<rootDir>/(tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx))which matches:- Any files in
tests/unitthat end in.spec.(js|jsx|ts|tsx); - Any js(x)/ts(x) files inside
__tests__directories.
Usage:
vue-cli-service test:unit [options] <regexForTestFiles>All Jest command line options are also supported.
- Any files in
Debugging Tests
Note that directly running jest will fail because the Babel preset requires hints to make your code work in Node.js, so you must run your tests with vue-cli-service test:unit.
If you want to debug your tests via the Node inspector, you can run the following:
# macOS or linux
node --inspect-brk ./node_modules/.bin/vue-cli-service test:unit
# Windows
node --inspect-brk ./node_modules/@vue/cli-service/bin/vue-cli-service.js test:unitConfiguration
Jest can be configured via jest.config.js in your project root, or the jest field in package.json.
Installing in an Already Created Project
vue add @vue/unit-jest