diff --git a/src/hooks/useBlockTimestamp.test.ts b/src/hooks/useBlockTimestamp.test.ts index ccc57dddb5..48911a2d34 100644 --- a/src/hooks/useBlockTimestamp.test.ts +++ b/src/hooks/useBlockTimestamp.test.ts @@ -31,7 +31,7 @@ describe('useBlockTimestamp', () => { }) it('should return the latest block timestamp', async () => { - const timestamp = Date.now() / 1000 + const timestamp = 69420 mockGetBlock.mockResolvedValue({ timestamp, @@ -49,7 +49,7 @@ describe('useBlockTimestamp', () => { }) it('should update the timestamp every INTERVAL', async () => { - const timestamp = Date.now() / 1000 + const timestamp = 69420 mockGetBlock.mockResolvedValue({ timestamp,