about summary refs log tree commit diff
path: root/__tests__
diff options
context:
space:
mode:
authorAnsh <anshnanda10@gmail.com>2023-06-08 09:32:56 -0700
committerGitHub <noreply@github.com>2023-06-08 11:32:56 -0500
commitb3e78017963934d32539c884d435a37aa1447974 (patch)
treeb564448d5d160573226ff95989357a934d054437 /__tests__
parent007d12e18248bf48e22454e23c74404bb797d499 (diff)
downloadvoidsky-b3e78017963934d32539c884d435a37aa1447974.tar.zst
Revert "show date after 7 days closes #754" (#860)
Diffstat (limited to '__tests__')
-rw-r--r--__tests__/lib/string.test.ts10
1 files changed, 3 insertions, 7 deletions
diff --git a/__tests__/lib/string.test.ts b/__tests__/lib/string.test.ts
index 75d7b8421..936708cf2 100644
--- a/__tests__/lib/string.test.ts
+++ b/__tests__/lib/string.test.ts
@@ -176,20 +176,16 @@ describe('ago', () => {
     new Date().setMinutes(new Date().getMinutes() - 10),
     new Date().setHours(new Date().getHours() - 1),
     new Date().setDate(new Date().getDate() - 1),
-    new Date().setDate(new Date().getDate() - 6),
-    new Date().setDate(new Date().getDate() - 7),
     new Date().setMonth(new Date().getMonth() - 1),
   ]
   const outputs = [
-    new Date(1671461038).toLocaleDateString('en-us', {year: 'numeric', month: 'short', day: 'numeric'}),
-    new Date('04 Dec 1995 00:12:00 GMT').toLocaleDateString('en-us', {year: 'numeric', month: 'short', day: 'numeric'}),
+    new Date(1671461038).toLocaleDateString(),
+    new Date('04 Dec 1995 00:12:00 GMT').toLocaleDateString(),
     '0s',
     '10m',
     '1h',
     '1d',
-    '6d',
-    new Date(new Date().setDate(new Date().getDate() - 7)).toLocaleDateString('en-us', {year: 'numeric', month: 'short', day: 'numeric'}),
-    new Date(new Date().setMonth(new Date().getMonth() - 1)).toLocaleDateString('en-us', {year: 'numeric', month: 'short', day: 'numeric'}),
+    '1mo',
   ]
 
   it('correctly calculates how much time passed, in a string', () => {