Hello!
I’m migrating from truffle-test to test-enviroment lib + jest, and I would like to make sure the custom migration script (where I define all the contract arguments and creation rules) gets applied to the test blockchain that test-environment spins up. I can see the abis are loaded from the artifact storage, but the contracts are not deployed by default in this network.
Should I add the beforeAll
in each test file to deploy my contracts, or do we have some sort of config to indicate which migration script should be executed before the test runner starts?
Thank you!