INSR-8882: Fix failing tests
This commit is contained in:
parent
d27b07d517
commit
50404eb4e6
1 changed files with 6 additions and 3 deletions
|
|
@ -27,7 +27,8 @@ jest.mock('@/helpers/cms-content-helper', () => ({
|
|||
const mockMixin = {
|
||||
methods: {
|
||||
getCmsContent: jest.fn(),
|
||||
setCmsContent: jest.fn()
|
||||
setCmsContent: jest.fn(),
|
||||
savePageDataToStore: jest.fn()
|
||||
}
|
||||
};
|
||||
|
||||
|
|
@ -778,7 +779,8 @@ describe('OrderConfirmation.vue', () => {
|
|||
}
|
||||
return '';
|
||||
}),
|
||||
setCmsContent: jest.fn()
|
||||
setCmsContent: jest.fn(),
|
||||
savePageDataToStore: jest.fn()
|
||||
}
|
||||
};
|
||||
});
|
||||
|
|
@ -827,7 +829,8 @@ describe('OrderConfirmation.vue', () => {
|
|||
}
|
||||
return '';
|
||||
}),
|
||||
setCmsContent: jest.fn()
|
||||
setCmsContent: jest.fn(),
|
||||
savePageDataToStore: jest.fn()
|
||||
}
|
||||
};
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue