diff --git a/test/helpers/test_helpers.dart b/test/helpers/test_helpers.dart index 38827c385..53b197835 100644 --- a/test/helpers/test_helpers.dart +++ b/test/helpers/test_helpers.dart @@ -250,23 +250,23 @@ GraphQLClient getAndRegisterGraphQLClient() { // Either fill this with mock data or override this stub // and return null - when( - service.query( - QueryOptions( - document: gql(queries.getPluginsList()), - ), - ), - ).thenAnswer( - (realInvocation) async { - return QueryResult.internal( - source: QueryResultSource.network, - parserFn: (data) => {}, - data: { - "getPlugins": [], - }, - ); - }, - ); + // when( + // service.query( + // QueryOptions( + // document: gql(queries.getPluginsList()), + // ), + // ), + // ).thenAnswer( + // (realInvocation) async { + // return QueryResult.internal( + // source: QueryResultSource.network, + // parserFn: (data) => {}, + // data: { + // "getPlugins": [], + // }, + // ); + // }, + // ); when(service.defaultPolicies).thenAnswer( (realInvocation) => DefaultPolicies(),