summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-11-10 15:40:47 -0300
committerEuAndreh <eu@euandre.org>2023-11-10 15:40:47 -0300
commit2c60369df402e02e058ffffa787195133ff6d676 (patch)
tree02be2bf6c37169f5bb70878e6d792547e38c77ac
parentsrc/utils.js: 💅 add extra newline separation (diff)
downloadpapod-2c60369df402e02e058ffffa787195133ff6d676.tar.gz
papod-2c60369df402e02e058ffffa787195133ff6d676.tar.xz
tests/js/utils.js: Remove test on "new Date()" objects
-rw-r--r--tests/js/utils.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/js/utils.js b/tests/js/utils.js
index 1ecc0a4..523352a 100644
--- a/tests/js/utils.js
+++ b/tests/js/utils.js
@@ -82,14 +82,6 @@ const test_eq = t => {
t.assert(!eq(null, {}));
t.assert(!eq([], {}));
-
-
- t.assert(eq(new Date(123), new Date(123)));
- t.assert(eq({ d: new Date(123) }, { d: new Date(123) }));
-
- // FIXME
- // t.assert(!eq(new Date(123), new Date(321)));
- // t.assert(!eq({ d: new Date(123) }, { d: new Date(321) }));
});
};