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
we have some cases where data-types live inside their parent too
so it is possible to handle all of our pathom impl or just mutations or resolvers with tools that exist
but testing something like just data-type a
or data-type b
would still require a lot of setup for a one off use
and that seems to be the case that isn’t covered by the above AFAICT