You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we have to run tests sequentially utilising jest's --runInBand option. This is to avoid DB data checks and master wallet sequence mismatch. It would be great to address these issues and run tests in parallel. This way we'd save our own time running tests locally, consume less of CI resources and reduce PR checks time.
DB acceptance criteria:
create new dbs for every test run
override relevant env vars
drop dbs after finish
Master wallet acceptance criteria:
generate a new wallet for a test run
send tokens to the every wallet created
override relevant env vars
The text was updated successfully, but these errors were encountered:
Currently we have to run tests sequentially utilising jest's
--runInBand
option. This is to avoid DB data checks and master wallet sequence mismatch. It would be great to address these issues and run tests in parallel. This way we'd save our own time running tests locally, consume less of CI resources and reduce PR checks time.DB acceptance criteria:
Master wallet acceptance criteria:
The text was updated successfully, but these errors were encountered: