kaocha

Official support channel: https://clojureverse.org/c/projects/kaocha
2021-05-13T03:13:50.093Z

I currently want to test, for example, just our pathom implementation or a subset of resolvers that are connected to a certain model. The structure is roughly pathom at the top then pathom.resolvers and pathom.mutations and then pathom.resolvers.<data-type> , etc

2021-05-13T03:14:11.093400Z

we have some cases where data-types live inside their parent too

2021-05-13T03:14:39.094Z

so it is possible to handle all of our pathom impl or just mutations or resolvers with tools that exist

2021-05-13T03:15:17.094800Z

but testing something like just data-type a or data-type b would still require a lot of setup for a one off use

2021-05-13T03:15:32.095300Z

and that seems to be the case that isn’t covered by the above AFAICT