Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@jest/fake-timers
Advanced tools
@jest/fake-timers is a package that provides fake timer functions for Jest, a popular JavaScript testing framework. It allows you to control the passage of time in your tests, making it easier to test code that relies on timers, such as setTimeout, setInterval, and Date.
Mocking setTimeout and setInterval
This feature allows you to mock setTimeout and setInterval functions, enabling you to control the passage of time in your tests. The code sample demonstrates how to use jest.useFakeTimers() to mock the timers and jest.advanceTimersByTime() to fast-forward time.
const { jest } = require('@jest/globals');
jest.useFakeTimers();
setTimeout(() => {
console.log('This will be logged after 1 second');
}, 1000);
jest.advanceTimersByTime(1000); // Fast-forward time by 1 second
// Output: 'This will be logged after 1 second'
Mocking Date
This feature allows you to mock the Date object, enabling you to control the current date and time in your tests. The code sample demonstrates how to use jest.useFakeTimers('modern') to mock the Date object and jest.setSystemTime() to set a specific date and time.
const { jest } = require('@jest/globals');
jest.useFakeTimers('modern');
const now = Date.now();
console.log(now); // Outputs the current timestamp
jest.setSystemTime(new Date('2020-01-01'));
const newNow = Date.now();
console.log(newNow); // Outputs the timestamp for 2020-01-01
Clearing timers
This feature allows you to clear mocked timers, ensuring that the associated callbacks are not executed. The code sample demonstrates how to use clearTimeout() to clear a setTimeout timer.
const { jest } = require('@jest/globals');
jest.useFakeTimers();
const timeoutId = setTimeout(() => {
console.log('This will not be logged');
}, 1000);
clearTimeout(timeoutId);
jest.advanceTimersByTime(1000); // Fast-forward time by 1 second
// No output
Sinon is a popular standalone test spies, stubs, and mocks library for JavaScript. It provides similar functionalities to @jest/fake-timers, including the ability to mock timers and control the passage of time. However, Sinon is not tied to any specific testing framework and can be used with various testing libraries.
Lolex is a standalone library for creating fake timers and controlling the passage of time. It provides similar functionalities to @jest/fake-timers, such as mocking setTimeout, setInterval, and Date. Lolex can be used independently or integrated with other testing frameworks.
FAQs
Unknown package
We found that @jest/fake-timers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
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.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.