Skip to content

Commit

Permalink
Merge pull request #1220 from AttilaMihaly/fix-the-build
Browse files Browse the repository at this point in the history
Fix the build
  • Loading branch information
AttilaMihaly authored Feb 18, 2025
2 parents df04de9 + 9de6c3f commit fbd7101
Show file tree
Hide file tree
Showing 4 changed files with 95 additions and 693 deletions.
6 changes: 3 additions & 3 deletions cli2/get-uri-wrapper.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ describe('the get-uri-wrapper module', () => {
expect(getUriWrapper.fetchUriToJson).toBeDefined
});
test("that fetches a document and converts it to JSON", async () => {
let file = path.resolve("./tsconfig.json")
let tsconfigJson = await getUriWrapper.fetchUriToJson(`file://${file}`);
expect(tsconfigJson).toHaveProperty("compilerOptions");
let file = path.resolve("./elm.json")
let elmJson = await getUriWrapper.fetchUriToJson(`file://${file}`);
expect(elmJson).toHaveProperty("type");

});
});
Loading

0 comments on commit fbd7101

Please sign in to comment.