Skip to content

moveline/chai-date

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Date assertions for the Chai assertion library

Resources

Stars

Watchers

Forks

Packages

No packages published