/chai-date

Date assertions for the Chai assertion library

Primary LanguageJavaScript

chai-date

An extension to the chai assertion library that provides a set of date assertions.

Installation

$ npm install chai-date

Usage

Use the assertions with chai's expect or should assertions.

Assertions

today

Asserts that the given date is today

var today = new Date()
today.should.be.today()

yesterday

Asserts that the given date is yesterday

var yesterday = new Date(today.getDate() - 1)
yesterday.should.be.yesterday()

tomorrow

Asserts that the given date is tomorrow

var tomorrow = new Date(today.getDate() + 1)
tomorrow.should.be.tomorrow()

Test

$ npm test

License

MIT