/* eslint-env mocha */ import assert from 'assert' import endOfWeek from '.' describe('endOfWeek', () => { it('returns the date with the time set to 23:59:59:999 and the date set to the last day of a week', () => { const date = new Date(2014, 8 /* Sep */, 2, 11, 55, 0) const result = endOfWeek(date) assert.deepStrictEqual( result, new Date(2014, 8 /* Sep */, 6, 23, 59, 59, 999) ) }) it('allows to specify which day is the first day of the week', () => { const date = new Date(2014, 8 /* Sep */, 2, 11, 55, 0) const result = endOfWeek(date, { weekStartsOn: 1 }) assert.deepStrictEqual( result, new Date(2014, 8 /* Sep */, 7, 23, 59, 59, 999) ) }) it('allows to specify which day is the first day of the week in locale', () => { const date = new Date(2014, 8 /* Sep */, 2, 11, 55, 0) const result = endOfWeek(date, { // @ts-expect-error locale: { options: { weekStartsOn: 1 }, }, }) assert.deepStrictEqual( result, new Date(2014, 8 /* Sep */, 7, 23, 59, 59, 999) ) }) it('`options.weekStartsOn` overwrites the first day of the week specified in locale', () => { const date = new Date(2014, 8 /* Sep */, 2, 11, 55, 0) const result = endOfWeek(date, { weekStartsOn: 1, // @ts-expect-error locale: { options: { weekStartsOn: 0 }, }, }) assert.deepStrictEqual( result, new Date(2014, 8 /* Sep */, 7, 23, 59, 59, 999) ) }) it('implicitly converts options', () => { const date = new Date(2014, 8 /* Sep */, 2, 11, 55, 0) const result = endOfWeek(date, { // @ts-expect-error weekStartsOn: '1', }) assert.deepStrictEqual( result, new Date(2014, 8 /* Sep */, 7, 23, 59, 59, 999) ) }) it('accepts a timestamp', () => { const date = new Date(2014, 8 /* Sep */, 2, 11, 55, 0).getTime() const result = endOfWeek(date) assert.deepStrictEqual( result, new Date(2014, 8 /* Sep */, 6, 23, 59, 59, 999) ) }) it('does not mutate the original date', () => { const date = new Date(2014, 8 /* Sep */, 2, 11, 55, 0) endOfWeek(date) assert.deepStrictEqual(date, new Date(2014, 8 /* Sep */, 2, 11, 55, 0)) }) describe('edge cases', () => { describe('when the given day is before the start of a week', () => { it('it returns the end of a week', () => { const date = new Date(2014, 9 /* Oct */, 6) const result = endOfWeek(date, { weekStartsOn: 3 }) assert.deepStrictEqual( result, new Date(2014, 9 /* Oct */, 7, 23, 59, 59, 999) ) }) }) describe('when the given day is the start of a week', () => { it('it returns the end of a week', () => { const date = new Date(2014, 9 /* Oct */, 8) const result = endOfWeek(date, { weekStartsOn: 3 }) assert.deepStrictEqual( result, new Date(2014, 9 /* Oct */, 14, 23, 59, 59, 999) ) }) }) describe('when the given day is after the start of a week', () => { it('it returns the end of a week', () => { const date = new Date(2014, 9 /* Oct */, 10) const result = endOfWeek(date, { weekStartsOn: 3 }) assert.deepStrictEqual( result, new Date(2014, 9 /* Oct */, 14, 23, 59, 59, 999) ) }) }) it('handles the week at the end of a year', () => { const date = new Date(2014, 11 /* Dec */, 29) const result = endOfWeek(date, { weekStartsOn: 5 }) assert.deepStrictEqual( result, new Date(2015, 0 /* Jan */, 1, 23, 59, 59, 999) ) }) }) it('returns `Invalid Date` if the given date is invalid', () => { const result = endOfWeek(new Date(NaN)) assert(result instanceof Date && isNaN(result.getTime())) }) it('throws `RangeError` if `options.weekStartsOn` is not convertable to 0, 1, ..., 6 or undefined', () => { const block = () => endOfWeek(new Date(2014, 8 /* Sep */, 2, 11, 55, 0), { // @ts-expect-error weekStartsOn: NaN, }) assert.throws(block, RangeError) }) it('throws TypeError exception if passed less than 1 argument', () => { // @ts-expect-error assert.throws(endOfWeek.bind(null), TypeError) }) })