We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76e6da8 commit 43e5d3cCopy full SHA for 43e5d3c
packages/graphql-codegen-cli/tests/codegen.spec.ts
@@ -970,7 +970,7 @@ describe('Codegen Executor', () => {
970
it('should load schema with custom fetch function', async () => {
971
let fetchCalledFor = null;
972
973
- async function myCustomFetch(url: string, options?: RequestInit): Promise<Response> {
+ async function myCustomFetch(url: string, _options?: RequestInit): Promise<Response> {
974
fetchCalledFor = url;
975
return Promise.resolve(new Response());
976
}
0 commit comments