Currently, all endpoints for our integration tests are defined in a single test_config.json file. As development continues, this file will grow too large to manage effectively. We have a similar issue with fixtures—they all reside in one directory.
Ideally, we should split everything up by endpoint type. The structure would look something like this:
/fixtures
/blocks
/runtime
/accounts
The config files would follow a similar pattern.
Currently, all endpoints for our integration tests are defined in a single
test_config.jsonfile. As development continues, this file will grow too large to manage effectively. We have a similar issue with fixtures—they all reside in one directory.Ideally, we should split everything up by endpoint type. The structure would look something like this:
The config files would follow a similar pattern.