summaryrefslogtreecommitdiff
path: root/date-fns/src/nextDay/test.ts
blob: 495bd2ed3f2bd67320289144319a953846ca401d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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)
    )
  })
})