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

jest-mock-now

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-mock-now

Date.now() as deterministic Jest mock function.

  • 1.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
13K
decreased by-30.87%
Maintainers
1
Weekly downloads
 
Created
Source

jest-mock-now

Date.now() as deterministic Jest mock function.

Install

➜ ~ npm install --save-dev jest-mock-now

Usage

It is possible to use the following configurations at every setup level; in a setupJest.js file as well as in a beforeEach or a test function as shown here.

const timestamp = require('jest-mock-now')();

console.log(Date.now()); // 1479427200000

or

const now = new Date('2017-06-22');

console.log(Date.now()); // 149808960000

The jest-mock-now function returns the timestamp used to mock the Date.now method:

const timestamp = require('jest-mock-now')(new Date('2017-06-22'));

console.log(timestamp); // 1498089600000
console.log(Date.now()); // 149808960000

If you need to restore the original Date.now() method, you can call mockRestore().

Date.now.mockRestore();

Keywords

FAQs

Package last updated on 25 Feb 2020

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