Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

chai-datetime

Package Overview
Dependencies
Maintainers
0
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chai-datetime

date / time comparison matchers for chai

  • 1.8.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

chai-datetime

Matchers for chai to help with common date comparison assertions against JavaScript Date objects.

npm version Build Status

Why?

Comparing date objects in JavaScript is not based on value, which requires you to call getTime() to ensure the values match. These matchers remove the need to do that. Additionally when comparing getTime() values with the standard chai equality matcher you don't get very readable output because you're comparing epoch seconds.

Better Error Messages

Comparing date values for equality with getTime() gives unreadable error messages:

AssertionError: expected 1369944360000 to equal 1369944300000

Use chai-datetime to get something easier to read:

AssertionError: expected Thu May 30 2013 16:06:00.000 (-04:00) to equal Thu May 30 2013 16:05:00.000 (-04:00)

Usage

Browser

<script src="chai.js"></script>
<script src="chai-datetime.js"></script>

Server

var chai = require('chai');
chai.use(require('chai-datetime'));

Assertions

There are a collection of assertions that work on times and dates. Any assertion that specifies date in the name only compares the date portion of the Date object.

  • equalTime
  • closeToTime (with a configurable delta in seconds)
  • beforeTime
  • beforeOrEqualTime
  • afterTime
  • afterOrEqualTime
  • withinTime
  • equalDate
  • beforeDate
  • beforeOrEqualDate
  • afterDate
  • afterOrEqualDate
  • withinDate

All assertions are defined for both the BDD and TDD syntaxes.

var d1 = new Date(2013, 4, 30, 16, 5),
    d2 = new Date(2013, 4, 30, 17);

d1.should.equalDate(d2)
expect(d1).to.equalDate(d2)
assert.equalDate(d1, d2)

Thanks

Thanks to @mitchlloyd for pairing with me on this to help get me started. Thanks to @rockwood for putting up with my continuous trolling.

Thanks to the chai-fuzzy module for giving me an idea for how to structure and test a chai plugin.

Keywords

FAQs

Package last updated on 07 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc