diff --git a/deno-build.mjs b/deno-build.mjs index dfb4ac192..9e0b39a9d 100644 --- a/deno-build.mjs +++ b/deno-build.mjs @@ -25,8 +25,8 @@ const denoLibRoot = join(projectRoot, "deno", "lib"); const skipList = [ join(nodeSrcRoot, "__tests__", "object-in-es5-env.test.ts"), - join(nodeSrcRoot, "__tests__", "languageServerFeatures.test.ts"), - join(nodeSrcRoot, "__tests__", "languageServerFeatures.source.ts"), + join(nodeSrcRoot, "__tests__", "language-server.test.ts"), + join(nodeSrcRoot, "__tests__", "language-server.source.ts"), ]; const walkAndBuild = (/** @type string */ dir) => { for (const entry of readdirSync(join(nodeSrcRoot, dir), { diff --git a/src/__tests__/language-server.test.ts b/src/__tests__/language-server.test.ts index 05445e68a..88767b4ab 100644 --- a/src/__tests__/language-server.test.ts +++ b/src/__tests__/language-server.test.ts @@ -6,7 +6,7 @@ import { expect, test, describe } from "@jest/globals"; // import { filePath } from "./language-server.source"; // The following tool is helpful for understanding the TypeScript AST associated with these tests: -// https://ts-ast-viewer.com/ (just copy the contents of languageServerFeatures.source into the viewer) +// https://ts-ast-viewer.com/ (just copy the contents of language-server.source into the viewer) test("", () => {}); // describe("Executing Go To Definition (and therefore Find Usages and Rename Refactoring) using an IDE works on inferred object properties", () => {