由vue-cli生成的单元测试抛出异常

问题描述 投票:0回答:1

使用vue-cli(v3.5.1)创建项目后,运行时自动创建的单元测试失败:'npm run test:unit'。

运行'vue create'后,我手动选择了以下选项:TS,Router,Vuex,Linter,Unit,E2E,类样式组件语法:yes,Babel:no,history mode:no,linter:TSLint,Lint on save ,单元测试解决方案:Mocha,E2E测试解决方案赛普拉斯,配置文件:专用文件enter image description here

'npm run test:unit'的输出如下。

WEBPACK Compiled successfully in 7321ms
MOCHA Testing...
RUNTIME EXCEPTION Exception occurred while loading your tests
ReferenceError: performance is not defined at Module../node_modules/vue/dist/vue.runtime.esm.js

我试图修改用于运行测试的npm脚本,如下所示(不确定包含是否来自Node,我不认为它应该是),但我只是得到一个错误,说明perf_hooks不是找不到\ node_modules \ mocha-webpack \ lib。

"test:unit": "vue-cli-service test:unit --include perf_hooks"

代码示例:https://github.com/derek-baker/super-duper-guacamole

vue-cli-3 mocha-webpack
1个回答
0
投票

如果除了上面的选项之外,我选择将Babel作为一项功能包括在内,并且还将Babel与TypeScript一起用于自动检测到的polyfill,则单元测试按预期运行。工作配置示例如下。

{
  "name": "vue-cli-test",
  "version": "0.1.0",
  "private": true,
  "scripts": {
    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build",
    "lint": "vue-cli-service lint",
    "test:e2e": "vue-cli-service test:e2e",
    "test:unit": "vue-cli-service test:unit"
  },
  "dependencies": {
    "vue": "^2.6.6",
    "vue-class-component": "^6.0.0",
    "vue-property-decorator": "^7.0.0",
    "vue-router": "^3.0.1",
    "vuex": "^3.0.1"
  },
  "devDependencies": {
    "@types/chai": "^4.1.0",
    "@types/mocha": "^5.2.4",
    "@vue/cli-plugin-babel": "^3.5.0",
    "@vue/cli-plugin-e2e-cypress": "^3.5.0",
    "@vue/cli-plugin-typescript": "^3.5.0",
    "@vue/cli-plugin-unit-mocha": "^3.5.0",
    "@vue/cli-service": "^3.5.0",
    "@vue/test-utils": "1.0.0-beta.29",
    "chai": "^4.1.2",
    "typescript": "^3.2.1",
    "vue-template-compiler": "^2.5.21"
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.