From 9e7d59f1fe1f58d5c02c21a16d7568376a1eb027 Mon Sep 17 00:00:00 2001 From: Nate Wienert Date: Mon, 7 Aug 2023 15:40:43 -1000 Subject: [PATCH] chore: fix typecheck error due to jest and cypress overlapping types (#7101) --- cypress/e2e/universal-search.test.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cypress/e2e/universal-search.test.ts b/cypress/e2e/universal-search.test.ts index c58b02f041..8642bb762c 100644 --- a/cypress/e2e/universal-search.test.ts +++ b/cypress/e2e/universal-search.test.ts @@ -39,6 +39,9 @@ describe('Universal search bar', () => { // this test is experiencing flake despite being correct, i can see the right value in DOM // but for some reason cypress doesn't find it, so adding retries for now :/ { + // @ts-ignore see https://uniswapteam.slack.com/archives/C047U65H422/p1691455547556309 + // basically cypress has bad types due to overlap with jest and you just have to deal with it + // i tried removing jest types but still happens retries: { runMode: 3, openMode: 3,