在对我的组件进行单元测试(使用 TypeScript 和 编写vue-class-component
)时,我使用 Sinon 来存根 API 调用。将存根添加到单元测试后,仍在调用原始方法(不返回存根值)。
it('should set the text to bar', async () => {
const stubbedApiResponse = () => {
return 'bar';
};
sinon.stub(MyComponent.prototype, 'getFoo').callsFake(stubbedApiResponse);
let options = {
template: '<div><my-component></my-component></div>',
components: {'my-component': MyComponent},
store: this.store
};
this.vm = new Vue(options).$mount();
Vue.nextTick(() => {
expect(this.vm.$el.querySelector('.text').textContent).toBe('bar'); // Still equals 'foo'
});
});
我试图存根的方法mounted
在组件中被调用并设置文本内容。任何帮助将不胜感激,谢谢!