Skip to content

Commit 3d8525c

Browse files
committed
fix join is not defined
1 parent d7af6df commit 3d8525c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/graphql-language-service-server/src/__tests__/MessageProcessor.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ describe('MessageProcessor with config', () => {
388388
expect(await project.lsp._graphQLCache.getSchema('default')).toBeDefined();
389389

390390
// schema file is present and contains schema
391-
const file = await readFile(join(genSchemaPath), { encoding: 'utf-8' });
391+
const file = await readFile(genSchemaPath, 'utf8');
392392
expect(file.split('\n').length).toBeGreaterThan(10);
393393

394394
// hover works

0 commit comments

Comments
 (0)