summaryrefslogtreecommitdiff
path: root/date-fns/src/endOfHour/test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'date-fns/src/endOfHour/test.ts')
-rw-r--r--date-fns/src/endOfHour/test.ts34
1 files changed, 34 insertions, 0 deletions
diff --git a/date-fns/src/endOfHour/test.ts b/date-fns/src/endOfHour/test.ts
new file mode 100644
index 0000000..d3f1ab4
--- /dev/null
+++ b/date-fns/src/endOfHour/test.ts
@@ -0,0 +1,34 @@
+// @flow
+/* eslint-env mocha */
+
+import assert from 'power-assert'
+import endOfHour from '.'
+
+describe('endOfHour', function() {
+ it('returns the date with the time set to the last millisecond before an hour ends', function() {
+ const date = new Date(2014, 11, 1, 22, 15)
+ const result = endOfHour(date)
+ assert.deepEqual(result, new Date(2014, 11, 1, 22, 59, 59, 999))
+ })
+
+ it('accepts a timestamp', function() {
+ const result = endOfHour(new Date(2014, 11, 1, 22, 15).getTime())
+ assert.deepEqual(result, new Date(2014, 11, 1, 22, 59, 59, 999))
+ })
+
+ it('does not mutate the original date', function() {
+ const date = new Date(2014, 11, 1, 22, 15)
+ endOfHour(date)
+ assert.deepEqual(date, new Date(2014, 11, 1, 22, 15))
+ })
+
+ it('returns `Invalid Date` if the given date is invalid', function() {
+ const result = endOfHour(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(endOfHour.bind(null), TypeError)
+ })
+})