summaryrefslogtreecommitdiff
path: root/date-fns/src/endOfSecond/test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'date-fns/src/endOfSecond/test.ts')
-rw-r--r--date-fns/src/endOfSecond/test.ts34
1 files changed, 34 insertions, 0 deletions
diff --git a/date-fns/src/endOfSecond/test.ts b/date-fns/src/endOfSecond/test.ts
new file mode 100644
index 0000000..bd67ecd
--- /dev/null
+++ b/date-fns/src/endOfSecond/test.ts
@@ -0,0 +1,34 @@
+// @flow
+/* eslint-env mocha */
+
+import assert from 'power-assert'
+import endOfSecond from '.'
+
+describe('endOfSecond', function() {
+ it('returns the date with the time set to the last millisecond before a second ends', function() {
+ const date = new Date(2014, 11, 1, 22, 15, 30)
+ const result = endOfSecond(date)
+ assert.deepEqual(result, new Date(2014, 11, 1, 22, 15, 30, 999))
+ })
+
+ it('accepts a timestamp', function() {
+ const result = endOfSecond(new Date(2014, 11, 1, 22, 15, 45).getTime())
+ assert.deepEqual(result, new Date(2014, 11, 1, 22, 15, 45, 999))
+ })
+
+ it('does not mutate the original date', function() {
+ const date = new Date(2014, 11, 1, 22, 15, 15, 300)
+ endOfSecond(date)
+ assert.deepEqual(date, new Date(2014, 11, 1, 22, 15, 15, 300))
+ })
+
+ it('returns `Invalid Date` if the given date is invalid', function() {
+ const result = endOfSecond(new Date(NaN))
+ //@ts-expect-error
+ assert(result instanceof Date && isNaN(result))
+ })
+
+ it('throws TypeError exception if passed less than 1 argument', function() {
+ assert.throws(endOfSecond.bind(null), TypeError)
+ })
+})