- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正尝试在我的一个 Vue 组件上编写一个简单的 Jest 单元测试。
技术栈:TypeScript、VueJS、Jest、Webpack,
结构:
root
- src
- invite
- accept.ts
- accept.vue
- test
- invite
- accept.ts
- app.ts
- jest.config.json
- package.json
在尝试使用 Jest 模拟依赖模块时,我一直在观察一些奇怪的行为。
src/invite/accept.ts:
import Vue from "vue";
import Component from 'vue-class-component';
import { eventBus } from './../app';
@Component
export default class InviteAccept extends Vue {
created() {
console.log(eventBus);
eventBus.$emit('hideNavigation');
};
}
src/invite/accept.vue
<template>
<div class="row">
<div class="col">
<h1>Blah</h1>
</div>
</div>
</template>
<script src="./accept.ts" lang="ts"></script>
src/app.ts
import { polyfill } from 'es6-promise'
import Vue from 'vue';
import VueRouter from 'vue-router';
import Invite from './invite/accept.vue';
polyfill();
export const eventBus = new Vue();
const router = new VueRouter({
routes: [
{ path: '/invite/accept/:token', component: Invite, name: 'inviteAccept' },
{ path: '/', component: undefined, name: 'index' },
]
});
Vue.use(VueRouter);
const app = new Vue({ router }).$mount('#app');
/jest.config.json
{
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js",
"\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"testRegex": "/test/.*\\.(ts|tsx)$",
"moduleFileExtensions": [
"vue",
"ts",
"tsx",
"js"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!lodash-es/.*)"
]
}
/package.json
{
"name": "blah",
"version": "1.0.0",
"license": "UNLICENSED",
"scripts": {
"build": "webpack --config webpack.prod.js",
"watch": "webpack --watch --config webpack.dev.js",
"test": "jest -c jest.config.json"
},
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"@types/jest": "^22.2.3",
"@vue/test-utils": "^1.0.0-beta.16",
"applicationinsights-js": "^1.0.15",
"bootstrap-vue": "^2.0.0-rc.9",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.10",
"es6-promise": "^4.2.4",
"extract-text-webpack-plugin": "3.0.2",
"html-webpack-plugin": "^3.0.6",
"jest": "^22.4.3",
"jest-teamcity-reporter": "^0.9.0",
"ts-jest": "^22.4.6",
"ts-loader": "3.4.0",
"typescript": "^2.7.2",
"vue": "^2.5.13",
"vue-class-component": "^6.2.0",
"vue-jest": "^2.5.0",
"vue-loader": "^14.1.1",
"vue-router": "^3.0.1",
"vue-style-loader": "^4.0.2",
"vue-template-compiler": "^2.5.13",
"vue-types": "^1.2.0",
"webpack": "3.10.0",
"webpack-merge": "^4.1.2"
},
"dependencies": {}
}
最后是测试类
/test/invite/accept.ts
import InviteAccept from './../../src/invite/accept';
import { eventBus } from './../../src/app';
import { shallowMount, createLocalVue } from '@vue/test-utils';
import VueRouter = require('vue-router'); // This needs to be 'require', rather than 'from'. Some weird thing or something.
import 'jest';
describe('invites', () => {
jest.mock('./../../src/app', () => 'anything');
function createWrapper() {
const localVue = createLocalVue();
localVue.use(VueRouter);
const router = new VueRouter();
return shallowMount(InviteAccept, {
localVue,
router
});
};
test('should mock in test', () => {
// this works:
const test = require('./../../src/app');
expect(test).toEqual('anything');
});
test('should mock in component', () => {
const wrapper = createWrapper();
});
});
名为 should mock in test
的测试获取 eventBus
的模拟值并通过。
名为 should mock in component
的测试没有得到 eventBus
的模拟值,它是 undefined
。具体错误如下:
TypeError: Cannot read property '$emit' of undefined
at VueComponent.Object.<anonymous>.InviteAccept.created (src/invite/accept.vue:49:23)
at callHook (node_modules/vue/dist/vue.runtime.common.js:2919:21)
at VueComponent.Vue._init (node_modules/vue/dist/vue.runtime.common.js:4628:5)
at new VueComponent (node_modules/vue/dist/vue.runtime.common.js:4796:12)
at createInstance (node_modules/@vue/test-utils/dist/vue-test-utils.js:4230:12)
at mount (node_modules/@vue/test-utils/dist/vue-test-utils.js:5376:12)
at Object.shallowMount (node_modules/@vue/test-utils/dist/vue-test-utils.js:5414:10)
at createWrapper (test/invite/accept.ts:13:29)
at Object.<anonymous> (test/invite/accept.ts:25:23)
组件的 created()
函数中的 console.log(eventBus);
也会产生 undefined
。
如果我尝试 console.log(eventBus);
在测试中,它也是 undefined
,我也不明白。
我希望发生的是替换组件内的 eventBus
实例。我意识到模拟将永远不会在设置为“任何”时工作,但我希望看到它至少设置为模拟值。
根据关于自动模拟的 Jest 文档 ( https://facebook.github.io/jest/docs/en/es6-class-mocks.html ),我认为上述内容是正确的。
我确信我遗漏了一些明显的东西,但我不知道它是什么。任何帮助将不胜感激:-)
最佳答案
jest.mock('./../../src/app', () => 'anything')
使用工厂函数返回的值模拟模块导出:
const test = require('./../../src/app');
expect(test).toEqual('anything');
尽管这适用于 ES 模块导入,因为它们在内部使用 CommonJS 模块,但这违反规范,因为 *
import 应该是一个对象。
The test called should mock in test gets the mocked value for eventBus and passes.
它不会被模拟 eventBus
。它获取 *
导出。
The test called should mock in component does not get the mocked value for eventBus
'anything' 字符串上没有 eventBus
属性,这就是测试失败的原因。
命名导出应该被模拟为:
jest.mock('./../../src/app', () => ({
eventBus: { $emit: jest.fn() }
}));
关于node.js - 使用 Jest 在 VueJS 组件中模拟自定义模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50374726/
我试图将我的 VueJS 组件中的某些内容发送到位于包含该组件的 html 页面中的函数。我是否遗漏了什么,或者这是不可能的? 在我的组件中作为方法: insert: function(){
完全遵循 docs的语言说明,我正在尝试以德语格式显示日期。相反,我仍然看到它是英文的:“12 Apr 2020”。 也尝试使用西类牙语,仍然得到“2020 年 4 月 12 日”。 我错过了什么吗?
我想从 Chart 对象访问 getValue 方法,但我得到的函数未定义。 import Vue from 'vue'; import C
我正在使用 laravel-vuejs 应用程序。当 vuejs 渲染 css 时,它会在 html head 中附加一些样式标签,如下图所示。有什么办法可以隐藏这个标签吗?我认为可以通过添加一些插件
我正在为 VueJS 创建一个加载栏插件,我想使用该插件控制 VueJS 组件(插件的一部分)的数据。 所以,最后我想做以下事情: 在 main.js 中包含插件 import VueLoadingB
如何使用 VueJs 和 VueJS-Router 为 Pimcore 进行扩展? 到目前为止,前端的 vuejs 没有任何问题……但我无法让 VueJs-Router 运行。 有人有在 pimcor
也许你可以成为我一天的救世主。 我正在尝试为我的扩展实现 vue-components。 我不能包含自定义 Vue.js 组件。我关注了https://pagekit.com/docs/develop
我是 Laravel 和 VueJS 的新手,对于困惑的代码提前深表歉意。 我一直在尝试制作一个注册表单,并将 VueJS 集成到 laravel 中以使其更具动态性。现在我一直在尝试使用 {{ }}
我想使用函数作为数据属性。这似乎在“works”数据属性的情况下工作得很好。但是我需要函数中的 this 上下文,以便我可以计算存储在 this.shoppingCart (另一个属性)中的值。 这可
我正在尝试从另一个方法调用一个方法,为此我使用了它。但是我的控制台导致我出错。 如何在 Vuejs 中调用另一个方法中的方法? 代码 methods: { searchLocations:
我已经使用 webpack_loader 创建了 Django 和 VueJS 集成项目。Django 在本地主机 8000 上运行,而 VueJS 在 8080 端口上运行。但是端口 8000 在控
我正在学习如何通过 udemy 类(class)制作单页应用程序,同时尝试做一个大学项目。问题是,在我的 Controller 中,我将数据库查询作为 json“alunos”发送到前端。现在,在 V
我有一个带有一些 html 的#app 容器,我在#app 上创建了 Vue 实例,所有内容都被编译并转换为 Vuejs 组件。然后我在另一个 html 字符串中使用 ajax,我需要以某种方式将其编
我有一个 symfony 2.8 应用程序,我最近集成了 VueJs 2 作为我的前端框架,因为它提供了很大的灵 active 。我的应用程序不是单页的,我使用 symfony Controller
好吧,我遇到了一个问题,虽然是一个奇怪的问题,但我到处都找不到答案。 我们被指派用 Vue.js 创建一个购物车,我已经完成了我自己开始了这个项目,想看看我能用 vuejs 做什么。问题出现在页面加载
逻辑 我有带有输入作为标签的复选框,其值来自数据库,因此文本(值)已经存在。 (完成) 我想列一份检查项目 list (完成) 我想如果我改变了一个项目的值得到改变的值,但它仍然给我数据库的值(需要帮
我正在尝试在页面上显示公告列表(从 API 检索)。我正在使用 Vuex 商店,我有一个名为 announcements 的状态。我还希望每次用户刷新/进入页面时更新此列表。所以我使用了生命周期钩子(
使用单文件模板,我希望有一个按钮,如果数组为空,则显示“单击此处”,如果数组已填充,则显示值。 ajax 工作正常并且对象正在更新,但按钮不会重新呈现。我在这里做错了什么? Mobil
在 VueJS 中,有没有办法在模板或脚本中将字符串插入字符串?例如,我希望以下内容显示 1 + 1 = 2 而不是 1 + 1 = {{ 1 + 1 }}。 {{ myVar }}
我在我的项目中使用 VueJS 2,我意识到我的构建部署很糟糕。 这是我在 github 上部署我的 VueJS 构建的脚本: #!/usr/bin/env sh # abort on errors
我是一名优秀的程序员,十分优秀!