Skip to content

Commit

Permalink
Add debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
drew-y committed Aug 30, 2024
1 parent 5ed8d99 commit d1a6e95
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/semantics/__tests__/modules.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ import { List } from "../../syntax-objects/list.js";
describe("modules", () => {
it("should register modules", () => {
const result = registerModules(input);
console.log("EXPECTED");
console.log(JSON.stringify(output, undefined, 2));
console.log("Actual");
console.log(JSON.stringify(result, undefined, 2));
assert.deepStrictEqual(JSON.parse(JSON.stringify(result)), output);
});
});
Expand Down

0 comments on commit d1a6e95

Please sign in to comment.