From 92e2223ce60da985dd2f095a2f232e6b806b0c95 Mon Sep 17 00:00:00 2001 From: Daniel Rozenberg Date: Wed, 3 Jan 2024 13:36:08 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9D=84=EF=B8=8F=20Increase=20timeout=20for?= =?UTF-8?q?=20e2e=20test=20`amp-social-share=20>=20clicking=20>=20opens=20?= =?UTF-8?q?a=20new=20window=20on=20click`=20(#39703)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../amp-social-share/1.0/test-e2e/test-amp-social-share.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/extensions/amp-social-share/1.0/test-e2e/test-amp-social-share.js b/extensions/amp-social-share/1.0/test-e2e/test-amp-social-share.js index 22a16c0e3a4d..84059114e27e 100644 --- a/extensions/amp-social-share/1.0/test-e2e/test-amp-social-share.js +++ b/extensions/amp-social-share/1.0/test-e2e/test-amp-social-share.js @@ -86,7 +86,9 @@ describes.endtoend( }); describe('clicking', () => { - it('opens a new window on click', async () => { + it('opens a new window on click', async function () { + this.timeout(5000); + const host = await controller.findElement('#two'); let windows = await controller.getAllWindows();