diff --git a/apps/browser/src/autofill/overlay/inline-menu/iframe-content/autofill-inline-menu-iframe.service.spec.ts b/apps/browser/src/autofill/overlay/inline-menu/iframe-content/autofill-inline-menu-iframe.service.spec.ts index 231cf10b63f..cedbb430e63 100644 --- a/apps/browser/src/autofill/overlay/inline-menu/iframe-content/autofill-inline-menu-iframe.service.spec.ts +++ b/apps/browser/src/autofill/overlay/inline-menu/iframe-content/autofill-inline-menu-iframe.service.spec.ts @@ -416,7 +416,7 @@ describe("AutofillInlineMenuIframeService", () => { "opacity 65ms ease-out 0s", ); - jest.advanceTimersByTime(100); + jest.advanceTimersByTime(200); expect(autofillInlineMenuIframeService["iframe"].style.transition).toBe( "opacity 125ms ease-out 0s", ); diff --git a/apps/browser/src/autofill/overlay/inline-menu/iframe-content/autofill-inline-menu-iframe.service.ts b/apps/browser/src/autofill/overlay/inline-menu/iframe-content/autofill-inline-menu-iframe.service.ts index ac69b5b620c..aaa629bc67b 100644 --- a/apps/browser/src/autofill/overlay/inline-menu/iframe-content/autofill-inline-menu-iframe.service.ts +++ b/apps/browser/src/autofill/overlay/inline-menu/iframe-content/autofill-inline-menu-iframe.service.ts @@ -322,7 +322,7 @@ export class AutofillInlineMenuIframeService implements AutofillInlineMenuIframe this.delayedCloseTimeout = globalThis.setTimeout(() => { this.updateElementStyles(this.iframe, { transition: this.fadeInOpacityTransition }); this.forceCloseInlineMenu(); - }, 100); + }, 200); } /**