Skip to content

Commit 8d8e1a2

Browse files
committedJun 23, 2023
Fix deno test bug
1 parent 73a5610 commit 8d8e1a2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎deno-build.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ const denoLibRoot = join(projectRoot, "deno", "lib");
2525

2626
const skipList = [
2727
join(nodeSrcRoot, "__tests__", "object-in-es5-env.test.ts"),
28-
join(nodeSrcRoot, "__tests__", "languageServerFeatures.test.ts"),
29-
join(nodeSrcRoot, "__tests__", "languageServerFeatures.source.ts"),
28+
join(nodeSrcRoot, "__tests__", "language-server.test.ts"),
29+
join(nodeSrcRoot, "__tests__", "language-server.source.ts"),
3030
];
3131
const walkAndBuild = (/** @type string */ dir) => {
3232
for (const entry of readdirSync(join(nodeSrcRoot, dir), {

‎src/__tests__/language-server.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { expect, test, describe } from "@jest/globals";
66
// import { filePath } from "./language-server.source";
77

88
// The following tool is helpful for understanding the TypeScript AST associated with these tests:
9-
// https://ts-ast-viewer.com/ (just copy the contents of languageServerFeatures.source into the viewer)
9+
// https://ts-ast-viewer.com/ (just copy the contents of language-server.source into the viewer)
1010

1111
test("", () => {});
1212
// describe("Executing Go To Definition (and therefore Find Usages and Rename Refactoring) using an IDE works on inferred object properties", () => {

0 commit comments

Comments
 (0)
Please sign in to comment.