Skip to content

Commit

Permalink
remove format test with >20 digits
Browse files Browse the repository at this point in the history
  • Loading branch information
eli-d committed Jan 15, 2025
1 parent 61ef757 commit 931521b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions web/__tests__/02_lib_usdFormat/001_usdFormat.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ describe("usdFormat", () => {
it("0<n<0.1 is entire number", () => {
expect(usdFormat(0.00152)).toEqual("$0.00152");
expect(usdFormat(0.000000000000152)).toEqual("$0.000000000000152");
expect(usdFormat(0.0000000000000000000000152)).toEqual(
"$0.0000000000000000000000152",
);
});
it("tens", () => {
expect(usdFormat(10.256)).toEqual("$10.26");
Expand Down

0 comments on commit 931521b

Please sign in to comment.