diff --git a/jest.config.js b/jest.config.js index 0cc955a8c..b192b8784 100644 --- a/jest.config.js +++ b/jest.config.js @@ -43,7 +43,7 @@ module.exports = { testMatch: ["**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"], coverageThreshold: { global: { - statements: 66, + statements: 64, }, }, // Uncomment this to avoid the massive amount of warnings we are getting for onSubmit and onInvalidSubmit diff --git a/src/layouts/quote/quote.spec.js b/src/layouts/quote/quote.spec.js index c162017c1..f555b6c16 100644 --- a/src/layouts/quote/quote.spec.js +++ b/src/layouts/quote/quote.spec.js @@ -963,5 +963,6 @@ function setupMocks({ customMountOptions }) { const wrapper = shallowMount(quote, mountOptions); wrapper.vm.setCmsContent = jest.fn(); + wrapper.vm.getCmsContent = jest.fn(); return { wrapper }; }