From 1e729385f2c392d8cdd4df41c9872c81a974dfee Mon Sep 17 00:00:00 2001 From: dtfiedler Date: Mon, 27 Nov 2023 11:18:21 -0800 Subject: [PATCH] fix(tests): set timestamp to seconds in tests --- tests/integration/routes.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/routes.test.ts b/tests/integration/routes.test.ts index 1205963..8243deb 100644 --- a/tests/integration/routes.test.ts +++ b/tests/integration/routes.test.ts @@ -82,7 +82,7 @@ describe('Integration tests', () => { height: (await arweave.blocks.getCurrent()).height, input: transferInteraction, owner: walletAddress, - timestamp: (await arweave.blocks.getCurrent()).timestamp, + timestamp: (await arweave.blocks.getCurrent()).timestamp / 1000, valid: true, id: writeInteraction!.originalTxId, });