diff options
author | dan <dan.abramov@gmail.com> | 2024-05-31 04:09:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-31 04:09:23 +0100 |
commit | 9879159438b9deec811f30f07f41839321495f73 (patch) | |
tree | ea33403fc519d688c932cd498c49f489dc8a2626 /__tests__ | |
parent | 8e2c21a8823b06b408297608d347dd9392d60ee3 (diff) | |
download | voidsky-9879159438b9deec811f30f07f41839321495f73.tar.zst |
Disable non-deterministic flaky test (#4295)
Diffstat (limited to '__tests__')
-rw-r--r-- | __tests__/lib/string.test.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/__tests__/lib/string.test.ts b/__tests__/lib/string.test.ts index 75cbaeea5..cf21d8dd2 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) |