Trying to wait a bit after starting hardhat before running the tests

This commit is contained in:
Arnaud 2025-06-20 16:56:47 +02:00
parent 0552bec6af
commit 46e8df097e
No known key found for this signature in database
GPG Key ID: B8FBC178F10CA7AE

View File

@ -62,7 +62,10 @@ jobs:
npm install
mkdir -p ../../tests/integration/logs
npm start > ../../tests/integration/logs/hardhat.log 2>&1 &
# Wait for the contracts to be deployed
# This sleep time is required with hardhat ignition
sleep 5
## Part 2 Tests ##
- name: Contract tests
if: matrix.tests == 'contract' || matrix.tests == 'all'