From 9879159438b9deec811f30f07f41839321495f73 Mon Sep 17 00:00:00 2001 From: dan Date: Fri, 31 May 2024 04:09:23 +0100 Subject: [PATCH] Disable non-deterministic flaky test (#4295) --- __tests__/lib/string.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/__tests__/lib/string.test.ts b/__tests__/lib/string.test.ts index 75cbaeea..cf21d8dd 100644 --- a/__tests__/lib/string.test.ts +++ b/__tests__/lib/string.test.ts @@ -142,7 +142,8 @@ describe('makeRecordUri', () => { }) }) -describe('ago', () => { +// FIXME: Reenable after fixing non-deterministic test. +describe.skip('ago', () => { const oneYearDate = new Date( new Date().setMonth(new Date().getMonth() - 11), ).setDate(new Date().getDate() - 28)