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

import assert from 'power-assert'
import getDate from '.'

describe('getDate', function() {
  it('returns the day of the month of the given date', function() {
    const result = getDate(new Date(2012, 1 /* Feb */, 29))
    assert(result === 29)
  })

  it('accepts a timestamp', function() {
    const result = getDate(new Date(2014, 11 /* Dec */, 31).getTime())
    assert(result === 31)
  })

  it('returns NaN if the given date is invalid', function() {
    const result = getDate(new Date(NaN))
    assert(isNaN(result))
  })

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