We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 679cef1 commit a144ac6Copy full SHA for a144ac6
hash.spec.ts
@@ -173,7 +173,7 @@ describe("hasher", () => {
173
const description = db.EnumType[digest] as Record<string, string[]>;
174
expect(description).property("@EnumVal").to.have.lengthOf(1);
175
const val = db.EnumVal[description["@EnumVal"][0]];
176
- expect(val).to.exist.and.to.have.property("ord", 1);
+ expect(val).to.exist.and.to.have.property("ord", "1");
177
expect(val).to.have.property("val", "A");
178
expect(description).property("@Private").to.have.lengthOf(1);
179
const priv = db.Private[description["@Private"][0]];
0 commit comments