我想测试我的Vue
组件中的方法,但是我需要为此模拟一些属性数据,稍后以this.$attrs.pattern
的形式访问,等等...我当前的代码是:< / p>
let wrapper;
beforeEach(() => {
wrapper = shallowMount(Input);
});
afterEach(() => {
wrapper.destroy();
});
it('should pass pattern check', () => {
// I want to setup pattern attribute here
expect(wrapper.vm.passPatternCheck).toBeTruthy();
});
我原以为会有类似wrapper.setProps()
的东西,但是还找不到。
答案 0 :(得分:0)
似乎尚无支持将以后的attrs
添加到wrapper
的支持。因此,我必须删除beforeEach
,而对完成的每个测试都使用特定的shallowMount
来进行attrs
。看起来像这样:
let wrapper;
afterEach(() => {
wrapper.destroy();
});
it('should pass pattern check', () => {
wrapper = shallowMount(Input,{
attrs: {
pattern: regex,
}});
expect(wrapper.vm.passPatternCheck).toBeTruthy();
});
如果能像以后attrs
一样支持以后再添加props: wrapper.setProps({})
,那就太好了