From e926efdc8d023a39901a3660ccbffd11ef2cd34f Mon Sep 17 00:00:00 2001 From: Tim Neutkens Date: Thu, 22 Sep 2022 15:46:54 +0200 Subject: [PATCH] Disable test in dev --- test/e2e/app-dir/index.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/e2e/app-dir/index.test.ts b/test/e2e/app-dir/index.test.ts index 36cda134001a0..8ab8ff348568f 100644 --- a/test/e2e/app-dir/index.test.ts +++ b/test/e2e/app-dir/index.test.ts @@ -1521,8 +1521,10 @@ describe('app dir', () => { ) }) - it('should redirect client-side', async () => { + // TODO-APP: Enable in development + ;(isDev ? it.skip : it)('should redirect client-side', async () => { const browser = await webdriver(next.url, '/redirect/client-side') + await waitFor(3000) await browser .elementByCss('button') .click()