From 5960020a7ac15106ecc316f0cae31096e26c63d9 Mon Sep 17 00:00:00 2001 From: jonybur Date: Wed, 23 Aug 2023 01:33:26 +0000 Subject: [PATCH] Longer await time to start testing --- .github/workflows/bbjs-testing.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/bbjs-testing.yml b/.github/workflows/bbjs-testing.yml index 600fde1ad8..e000e95dc1 100644 --- a/.github/workflows/bbjs-testing.yml +++ b/.github/workflows/bbjs-testing.yml @@ -89,20 +89,17 @@ jobs: run: | cd nextjs-bbjs-demo npm install - cat package.json - name: Output bb.js package contents run: | cd nextjs-bbjs-demo/node_modules/@aztec/bb.js - ls -R - cat package.json - name: Run dev and test scripts concurrently run: | cd nextjs-bbjs-demo (timeout 600 npm run dev || exit 255) & # The exit code 255 is chosen to be distinct. DEVPID=$! - sleep 10 + sleep 30 npm run test wait $DEVPID EXITCODE=$?