From bd9ede9d137b5dc3b38eacddcb2c861f3d4f8d3a Mon Sep 17 00:00:00 2001 From: Paul Fitzpatrick Date: Fri, 9 Sep 2022 17:05:29 -0400 Subject: [PATCH] give parseDate test more time (#278) The time it takes parseDate to run depends on how many timezone names moment knows about. --- test/common/parseDate.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/test/common/parseDate.ts b/test/common/parseDate.ts index ec44977e..ad5c8fde 100644 --- a/test/common/parseDate.ts +++ b/test/common/parseDate.ts @@ -331,6 +331,7 @@ describe('parseDate', function() { }); it('should handle datetimes as formatted by moment', function() { + this.timeout(10000); // there may be a LOT of timezone names. for (const date of ['2020-02-03', '2020-06-07', '2020-10-11']) { // different months for daylight savings const dateTime = date + ' 12:34:56'; const utcMoment = moment.tz(dateTime, 'UTC');