Rhys Evans

Results 67 comments of Rhys Evans

@thewilkybarkid If you're able to create a repo with a reduced test case I'll look into it.

Are you suggesting adding more debug info to the error log, essentially describing in more detail the request which has not been matched?

I'm not sure about it as a feature. 1. The error state only covers a small number of situations where mocks are misconfigured e.g. misconfigured mocks can result in the...

Provisional API, based on https://the-guild.dev/graphql/tools/docs/mocking#mockserver ``` fetchMock.post('/graphql', fetchMock.graphQL(schemaString, mocks, preserveResolvers)) ``` ``` graphQL: (schemaString, mocks, preserveResolvers) { const server = mockServer(schemaString, mocks, preserveResolvers) return ({options: {body: {variables, query}}}) => {...