Skip to content

Latest commit

 

History

History
executable file
·
28 lines (16 loc) · 882 Bytes

File metadata and controls

executable file
·
28 lines (16 loc) · 882 Bytes

@vue/cli-plugin-unit-jest

英文原版

vue-cli 的 unit-jest 插件

注入的命令

  • vue-cli-service test:unit

通过 Jest 运行单元测试。默认的 testMatch<rootDir>/(tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)),它匹配:

  • 任何 test/unit 中以 .spec.(js|jsx|ts|tsx) 结尾的文件;
  • 任何 __tests__ 目录中的 js(x)/ts(x) 文件。

使用:vue-cli-service test:unit [options] <regexForTestFiles>

支持所有的 Jest 命令行选项

配置

Jest 可以通过你项目根目录中的 jest.config.js 文件或 package.json 文件中 jest 字段的进行配置。

在已创建的项目中安装

vue add @vue/unit-jest