diff --git a/src/components/feature-board-file-element/content/display/image-display/ImageDisplay.unit.ts b/src/components/feature-board-file-element/content/display/image-display/ImageDisplay.unit.ts index 3b1d674e60..5600b633e0 100644 --- a/src/components/feature-board-file-element/content/display/image-display/ImageDisplay.unit.ts +++ b/src/components/feature-board-file-element/content/display/image-display/ImageDisplay.unit.ts @@ -89,15 +89,6 @@ describe("ImageDisplay", () => { ); }); - it("should not display div with class 'menu-background'", () => { - const { wrapper } = setup({ isEditMode: false }); - - const div = wrapper.find(".menu-background"); - console.log(wrapper.props()); - - expect(div.exists()).toBe(false); - }); - describe("When alternative text is defined", () => { it("should have set alt correctly", () => { const alternativeText = "alternative text"; @@ -150,14 +141,6 @@ describe("ImageDisplay", () => { expect(src).toBe(previewUrl); }); - it("should display div with class 'menu-background'", () => { - const { wrapper } = setup({ isEditMode: true }); - - const div = wrapper.find(".menu-background"); - - expect(div.exists()).toBe(true); - }); - describe("When alternative text is defined", () => { it("should have set alt correctly", () => { const alternativeText = "alternative text";