From ce4105f52993c2941f4bdd4791182833302eafc8 Mon Sep 17 00:00:00 2001 From: sachaaaaa Date: Wed, 24 Apr 2019 11:53:02 +1000 Subject: [PATCH] Fix node tests --- ts/test/types/Attachment_test.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ts/test/types/Attachment_test.ts b/ts/test/types/Attachment_test.ts index cf438e2a7..5e3132f41 100644 --- a/ts/test/types/Attachment_test.ts +++ b/ts/test/types/Attachment_test.ts @@ -45,10 +45,7 @@ describe('Attachment', () => { data: stringToArrayBuffer('foo'), contentType: MIME.VIDEO_QUICKTIME, }; - // Unix timestamp of start of year 2000 to fix odd sudo timezone bug - const timestamp = new Date( - 946684800000 - moment().utcOffset() * 60 * 1000 - ); + const timestamp = moment('2000-01-01').toDate(); const actual = Attachment.getSuggestedFilename({ attachment, timestamp,