Skip to content

Commit

Permalink
feat: more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ponderingdemocritus committed Jun 28, 2024
1 parent 6dcd263 commit 6a55748
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/state/src/__tests__/utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ describe("convertValues", () => {
const schema = { hugeNumber: RecsType.BigInt };
const values = {
hugeNumber: {
value: "000000000000000000000000000000000000000000000000000000000000000b",
value: "1000000000000000000000000000000000000000000000000000000000000001",
},
};
const result = convertValues(schema, values);
expect(result.hugeNumber).toBe(
BigInt(
"0x000000000000000000000000000000000000000000000000000000000000000b"
"1000000000000000000000000000000000000000000000000000000000000001"
)
);
});
Expand Down

0 comments on commit 6a55748

Please sign in to comment.