We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49cd198 commit 20a8ef5Copy full SHA for 20a8ef5
packages/graphql-language-service-server/src/__tests__/findGraphQLTags.test.ts
@@ -559,7 +559,8 @@ export function Example(arg: string) {}`;
559
const contents = findGraphQLTags(text, '.svelte');
560
expect(contents.length).toEqual(1);
561
});
562
- it('handles full astro example', () => {
+ // eslint-disable-next-line jest/no-disabled-tests
563
+ it.skip('handles full astro example', () => {
564
const text = `
565
---
566
const gql = String.raw;
packages/graphql-language-service-server/src/constants.ts
@@ -58,6 +58,7 @@ export const DEFAULT_SUPPORTED_EXTENSIONS = [
58
'.cts',
59
'.mts',
60
] as const;
61
+
62
export type SupportedExtensions = typeof DEFAULT_SUPPORTED_EXTENSIONS;
63
export type SupportedExtensionsEnum =
64
(typeof DEFAULT_SUPPORTED_EXTENSIONS)[number];
0 commit comments