summaryrefslogtreecommitdiff
path: root/date-fns/src/isWeekend/test.ts
blob: 750ecaae275781ad0c878d0255ad1257dd6189df (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
// @flow
/* eslint-env mocha */

import assert from 'power-assert'
import isWeekend from '.'

describe('isWeekend', function () {
  it('returns true if the given date is in a weekend', function () {
    const result = isWeekend(new Date(2014, 9 /* Oct */, 5))
    assert(result === true)
  })

  it('returns false if the given date is not in a weekend', function () {
    const result = isWeekend(new Date(2014, 9 /* Oct */, 6))
    assert(result === false)
  })

  it('accepts a timestamp', function () {
    const result = isWeekend(new Date(2014, 9 /* Oct */, 5).getTime())
    assert(result === true)
  })

  it('returns false if the given date is `Invalid Date`', function () {
    const result = isWeekend(new Date(NaN))
    assert(result === false)
  })

  it('throws TypeError exception if passed less than 1 argument', function () {
    assert.throws(isWeekend.bind(null), TypeError)
  })
})