Replies: 1 comment 1 reply
-
I'm working on it right now 😅 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
wagmi runs its test suite against a mainnet fork using Hardhat's Mainnet forking. While this is a boon for development (it allows us to simulate state changes locally or during continuous integration), there are a couple opportunities to improve wagmi's current implementation:
start-server-and-test
. This is slow and causes sporadic timeouts. By running the networks as service containers, we could split the test suite into shards and run in parallel, speeding up test runs significantly.The ideal PR would address these points, while making sure it is still easy to setup and run tests in during development.
Beta Was this translation helpful? Give feedback.
All reactions