Skip to content

Commit

Permalink
Update frontend/__tests__/hooks/use-rate.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
amanape authored Nov 14, 2024
1 parent 775b1ff commit c26757d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/__tests__/hooks/use-rate.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe("useRate", () => {
expect(result.current.isUnderThreshold).toBe(false);
});

it("should return an isExceeding boolean", () => {
it("should return an isUnderThreshold boolean", () => {
const { result } = renderHook(() => useRate({ threshold: 500 }));

vi.setSystemTime(500);
Expand Down

0 comments on commit c26757d

Please sign in to comment.