From 29a35e153410082ebfe0d6ebbbbb769ed1a318dd Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Mon, 22 Apr 2024 17:19:29 -0300 Subject: [PATCH] chore: Run flakey e2e tests on CI but allow failure So we can keep an eye on why they are failing. --- yarn-project/end-to-end/Earthfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/yarn-project/end-to-end/Earthfile b/yarn-project/end-to-end/Earthfile index b546dbf84a3..59403a2400c 100644 --- a/yarn-project/end-to-end/Earthfile +++ b/yarn-project/end-to-end/Earthfile @@ -86,6 +86,10 @@ e2e-tests: FROM ../+end-to-end RUN yarn test ./src/e2e +flakey-e2e-tests: + FROM ../+end-to-end + RUN yarn test --passWithNoTests ./src/flakey || true + e2e-sandbox-example: ARG e2e_mode=local DO +E2E_TEST --test=e2e_sandbox_example.test.ts --e2e_mode=$e2e_mode