Clarification and motivation
Our tests are somewhat messy and slow, we can clean them up to use latest cleveland features more efficiently.
Acceptance criteria
- We don't use
hspec and tasty-hspec to group tests, we group them using tasty directly.
stablecoin-nettest and stablecoin-test are merged into one test-suite. Previously we kept them separated to be able to run only non-network tests, but now it's possible in a united test suite as well.
- We put operations into batches as much as possible to make tests (presumably) faster.
- We don't use the Integrational interface directly unless it's really necessary (it shouldn't be, because the Nettest interface should contain all Integrational features).
Clarification and motivation
Our tests are somewhat messy and slow, we can clean them up to use latest
clevelandfeatures more efficiently.Acceptance criteria
hspecandtasty-hspecto group tests, we group them usingtastydirectly.stablecoin-nettestandstablecoin-testare merged into one test-suite. Previously we kept them separated to be able to run only non-network tests, but now it's possible in a united test suite as well.