diff --git a/custom-words.txt b/custom-words.txt index 297692fd04..953fcd65ed 100644 --- a/custom-words.txt +++ b/custom-words.txt @@ -65,6 +65,7 @@ yoshiakis // packages and tools argparse +arrayish astro astrojs changesets diff --git a/packages/graphql-language-service-server/src/__tests__/MessageProcessor.test.ts b/packages/graphql-language-service-server/src/__tests__/MessageProcessor.test.ts index 2c2ddf3768..143e2bb751 100644 --- a/packages/graphql-language-service-server/src/__tests__/MessageProcessor.test.ts +++ b/packages/graphql-language-service-server/src/__tests__/MessageProcessor.test.ts @@ -18,7 +18,7 @@ import { parseDocument } from '../parseDocument'; jest.mock('../Logger'); -import { GraphQLCache, getGraphQLCache } from '../GraphQLCache'; +import { GraphQLCache } from '../GraphQLCache'; import { loadConfig } from 'graphql-config'; @@ -70,7 +70,7 @@ describe('MessageProcessor', () => { getDiagnostics(_query, _uri) { return []; }, - async getHoverInformation(_query, position, uri) { + async getHoverInformation(_query, position, _uri) { return { contents: '```graphql\nField: hero\n```', range: new Range(position, position),