From ab80443073e68d54095705e43b3220c17411485b Mon Sep 17 00:00:00 2001 From: Cesar Gonzalez Date: Tue, 16 Apr 2024 11:23:59 -0500 Subject: [PATCH] [PM-5189] Removing the messageOrigin to ensure we test that it is being set when passing the fist window message to the overlay page iframe element --- .../autofill/overlay/pages/list/autofill-overlay-list.spec.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/browser/src/autofill/overlay/pages/list/autofill-overlay-list.spec.ts b/apps/browser/src/autofill/overlay/pages/list/autofill-overlay-list.spec.ts index 41a9d3a510..bc87721b96 100644 --- a/apps/browser/src/autofill/overlay/pages/list/autofill-overlay-list.spec.ts +++ b/apps/browser/src/autofill/overlay/pages/list/autofill-overlay-list.spec.ts @@ -21,7 +21,6 @@ describe("AutofillOverlayList", () => { beforeEach(() => { document.body.innerHTML = ``; autofillOverlayList = document.querySelector("autofill-overlay-list"); - autofillOverlayList["messageOrigin"] = "https://localhost/"; jest.spyOn(globalThis.document, "createElement"); jest.spyOn(globalThis.parent, "postMessage"); });