about summary refs log tree commit diff
path: root/__tests__
diff options
context:
space:
mode:
authordan <dan.abramov@gmail.com>2024-05-31 04:09:23 +0100
committerGitHub <noreply@github.com>2024-05-31 04:09:23 +0100
commit9879159438b9deec811f30f07f41839321495f73 (patch)
treeea33403fc519d688c932cd498c49f489dc8a2626 /__tests__
parent8e2c21a8823b06b408297608d347dd9392d60ee3 (diff)
downloadvoidsky-9879159438b9deec811f30f07f41839321495f73.tar.zst
Disable non-deterministic flaky test (#4295)
Diffstat (limited to '__tests__')
-rw-r--r--__tests__/lib/string.test.ts3
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)