From 6bd4c16a4d21b75f7fa55837580a1e28c6862007 Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Tue, 15 Nov 2022 19:14:13 -0600 Subject: [PATCH] try simple sleep instead of curl retry --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f65341f..39cce1f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,7 +27,8 @@ jobs: - run: name: Run cypress tests command: | - curl --retry-delay 5 --retry 10 --retry-connrefused https://localhost:3000 + ## curl --retry-delay 5 --retry 10 --retry-connrefused https://localhost:3000 + sleep 60 npm run cypress:run workflows: