summaryrefslogtreecommitdiff
path: root/date-fns/src/nextDay/test.ts
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-08-23 16:46:06 -0300
committerSebastian <sebasjm@gmail.com>2021-08-23 16:48:30 -0300
commit38acabfa6089ab8ac469c12b5f55022fb96935e5 (patch)
tree453dbf70000cc5e338b06201af1eaca8343f8f73 /date-fns/src/nextDay/test.ts
parentf26125e039143b92dc0d84e7775f508ab0cdcaa8 (diff)
downloadnode-vendor-38acabfa6089ab8ac469c12b5f55022fb96935e5.tar.gz
node-vendor-38acabfa6089ab8ac469c12b5f55022fb96935e5.tar.bz2
node-vendor-38acabfa6089ab8ac469c12b5f55022fb96935e5.zip
added web vendorsHEADmaster
Diffstat (limited to 'date-fns/src/nextDay/test.ts')
-rw-r--r--date-fns/src/nextDay/test.ts86
1 files changed, 86 insertions, 0 deletions
diff --git a/date-fns/src/nextDay/test.ts b/date-fns/src/nextDay/test.ts
new file mode 100644
index 0000000..495bd2e
--- /dev/null
+++ b/date-fns/src/nextDay/test.ts
@@ -0,0 +1,86 @@
+// @flow
+/* eslint-env mocha */
+
+import assert from 'power-assert'
+import nextDay from '.'
+
+describe('nextDay', function () {
+ it('returns the following Monday given various dates before the same', function () {
+ assert.deepStrictEqual(
+ nextDay(new Date(2020, 2 /* Mar */, 20), 1),
+ new Date(2020, 2 /* Mar */, 23)
+ )
+
+ assert.deepStrictEqual(
+ nextDay(new Date(2020, 2 /* Mar */, 19), 1),
+ new Date(2020, 2 /* Mar */, 23)
+ )
+
+ assert.deepStrictEqual(
+ nextDay(new Date(2020, 2 /* Mar */, 18), 1),
+ new Date(2020, 2 /* Mar */, 23)
+ )
+
+ assert.deepStrictEqual(
+ nextDay(new Date(2020, 2 /* Mar */, 17), 1),
+ new Date(2020, 2 /* Mar */, 23)
+ )
+
+ assert.deepStrictEqual(
+ nextDay(new Date(2020, 2 /* Mar */, 16), 1),
+ new Date(2020, 2 /* Mar */, 23)
+ )
+
+ assert.deepStrictEqual(
+ nextDay(new Date(2020, 2 /* Mar */, 22), 1),
+ new Date(2020, 2 /* Mar */, 23)
+ )
+
+ assert.deepStrictEqual(
+ nextDay(new Date(2020, 4 /* May */, 2), 1),
+ new Date(2020, 4 /* May */, 4)
+ )
+ })
+
+ it('returns the following Tuesday given the Saturday before it', function () {
+ assert.deepStrictEqual(
+ nextDay(new Date(2020, 4 /* May */, 2), 2),
+ new Date(2020, 4 /* May */, 5)
+ )
+ })
+
+ it('returns the following Wednesday given the Saturday before it', function () {
+ assert.deepStrictEqual(
+ nextDay(new Date(2020, 4 /* May */, 2), 3),
+ new Date(2020, 4 /* May */, 6)
+ )
+ })
+
+ it('returns the following Thursday given the Saturday before it', function () {
+ assert.deepStrictEqual(
+ nextDay(new Date(2020, 4 /* May */, 2), 4),
+ new Date(2020, 4 /* May */, 7)
+ )
+ })
+
+ it('returns the following Friday given the Saturday before it', function () {
+ assert.deepStrictEqual(
+ nextDay(new Date(2020, 4 /* May */, 2), 5),
+ new Date(2020, 4 /* May */, 8)
+ )
+ })
+
+ it('returns the following Saturday given the Saturday before it', function () {
+ assert.deepStrictEqual(
+ nextDay(new Date(2020, 4 /* May */, 2), 6),
+ new Date(2020, 4 /* May */, 9)
+ )
+ })
+
+ it('returns next Sunday given the day is Sunday', function () {
+ assert.deepStrictEqual(
+ nextDay(new Date(2020, 2 /* Mar */, 22), 0),
+ new Date(2020, 2 /* Mar */, 29)
+ )
+ })
+})