test(component): ScoreScreen
parent
e0b57f0895
commit
1b20f60b3d
|
@ -7,23 +7,24 @@ const localVue = createLocalVue();
|
|||
|
||||
localVue.use(Vuex);
|
||||
|
||||
const $store = new Vuex.Store({
|
||||
modules: {
|
||||
questions: {
|
||||
namespaced: true,
|
||||
state: {
|
||||
index: 0,
|
||||
score: 0,
|
||||
questions: [],
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
let $store: any;
|
||||
|
||||
let wrapper: any;
|
||||
|
||||
describe('Component - ScoreScreen', () => {
|
||||
beforeEach(() => {
|
||||
$store = new Vuex.Store({
|
||||
modules: {
|
||||
questions: {
|
||||
namespaced: true,
|
||||
state: {
|
||||
index: 0,
|
||||
score: 0,
|
||||
questions: [],
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
wrapper = shallowMount(ScoreScreen, {
|
||||
mocks: { $store },
|
||||
propsData: {
|
||||
|
|
Loading…
Reference in New Issue