1. when writing contract tests - do you recommend ...
# general
a
2. when writing contract tests - do you recommend using the actual deployed service (always running) or starting up the service on the spot?
t
For the test (where you define the contract) you don’t spin up anything For verification (where you check the contract written earlier) usually you spin it up locally
a
great, thanks! 🙂