Skip to content

Commit

Permalink
Fix deno test bug
Browse files Browse the repository at this point in the history
  • Loading branch information
colinhacks committed Jun 23, 2023
1 parent 73a5610 commit 8d8e1a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions deno-build.mjs
Expand Up @@ -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), {
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/language-server.test.ts
Expand Up @@ -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", () => {
Expand Down

0 comments on commit 8d8e1a2

Please sign in to comment.