/* eslint-env mocha */ import assert from 'assert' import getDay from '.' describe('getDay', () => { it('returns the day of the week of the given date', () => { const result = getDay(new Date(2012, 1 /* Feb */, 29)) assert(result === 3) }) it('accepts a timestamp', () => { const result = getDay(new Date(2014, 5 /* Jun */, 1).getTime()) assert(result === 0) }) it('returns NaN if the given date is invalid', () => { const result = getDay(new Date(NaN)) assert(isNaN(result)) }) it('throws TypeError exception if passed less than 1 argument', () => { // @ts-expect-error assert.throws(getDay.bind(null), TypeError) }) })