diff --git a/src/common-components/funnel-footer/funnel-footer.spec.js b/src/common-components/funnel-footer/funnel-footer.spec.js index 33b7400fc..791cd0961 100644 --- a/src/common-components/funnel-footer/funnel-footer.spec.js +++ b/src/common-components/funnel-footer/funnel-footer.spec.js @@ -65,22 +65,6 @@ describe("funnel-footer.vue", () => { }); it("Should return class justify-content-end if paddingHeight < 80px", async () => { - // Act - const wrapper = mount(funnelFooter, { - propsData: { - footer: true - }, - }); - - // Assert - const stacked = wrapper.find("#stacked"); - wrapper.vm.paddingHeight = 47; - - // Expect - expect(stacked.attributes('class')).toContain("justify-content-end"); - }); - - it("Should return class justify-content-start if paddingHeight > 80px", async () => { global.document.getElementById = jest.fn().mockImplementation(()=> { return { @@ -99,9 +83,7 @@ describe("funnel-footer.vue", () => { footer: true }, }); - console.log(wrapper.html()); const infoBox = document.getElementById('infoBox'); - console.log(document); // Assert const stacked = wrapper.find("#stacked"); wrapper.vm.paddingHeight = 100;