From 38acabfa6089ab8ac469c12b5f55022fb96935e5 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 23 Aug 2021 16:46:06 -0300 Subject: added web vendors --- date-fns/src/isWeekend/test.ts | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 date-fns/src/isWeekend/test.ts (limited to 'date-fns/src/isWeekend/test.ts') diff --git a/date-fns/src/isWeekend/test.ts b/date-fns/src/isWeekend/test.ts new file mode 100644 index 0000000..750ecaa --- /dev/null +++ b/date-fns/src/isWeekend/test.ts @@ -0,0 +1,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) + }) +}) -- cgit v1.2.3