Skip to content

Commit

Permalink
wip: adopt algorithmic features from cljs prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
ca-d committed Nov 4, 2024
1 parent 679cef1 commit a144ac6
Show file tree
Hide file tree
Showing 2 changed files with 679 additions and 41 deletions.
2 changes: 1 addition & 1 deletion hash.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ describe("hasher", () => {
const description = db.EnumType[digest] as Record<string, string[]>;
expect(description).property("@EnumVal").to.have.lengthOf(1);
const val = db.EnumVal[description["@EnumVal"][0]];
expect(val).to.exist.and.to.have.property("ord", 1);
expect(val).to.exist.and.to.have.property("ord", "1");
expect(val).to.have.property("val", "A");
expect(description).property("@Private").to.have.lengthOf(1);
const priv = db.Private[description["@Private"][0]];
Expand Down
Loading

0 comments on commit a144ac6

Please sign in to comment.