我们在银板上放了一个n层故事的蛋糕。我们必须将其放在金色的盘子上,但是蛋糕太大了,无法直接执行此操作,因此我们需要使用额外的盘子,即青铜盘子。
import { Component } from 'vue';
import Vuex from 'vuex';
import { createLocalVue, shallowMount } from '@vue/test-utils';
import numericOnly from '@/directives/input-numeric-only';
const localVue = createLocalVue();
localVue.use(Vuex);
localVue.directive('numericOnly', numericOnly);
describe('Directives Input-Numeric-Only', () => {
let component: Component;
let wrapper: any;
beforeEach(() => {
component = {
template: `
<input type="text" id="inputNumericOnly" v-numericOnly
v-bind:value="inputValue" @input="updateInput($event)" />
`,
data() {
return {
inputValue: 0,
};
},
methods: {
updateInput($event: any) {
console.log('Input Change....', $event.target.value);
},
},
};
wrapper = shallowMount(component, {
localVue,
});
});
it('Check if char key is pressed', () => {
wrapper.find('input').trigger('keydown', {
which: 65,
});
expect(wrapper.vm.inputValue).toBe('a');
});
});
我希望输出结果是一个列表,其中n个故事放在金盘子上。