chai-date

1.0.0 • Public • Published

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

Authors Christopher Garvis & Moveline

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i chai-date

Weekly Downloads

11

Version

1.0.0

License

MIT

Last publish

Collaborators

  • cgarvis