Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@types/sinonjs__fake-timers
Advanced tools
TypeScript definitions for @sinonjs/fake-timers
@types/sinonjs__fake-timers provides TypeScript type definitions for the sinonjs/fake-timers library, which allows you to control the flow of time in your JavaScript code. This is particularly useful for testing code that relies on timers, such as setTimeout, setInterval, and Date.
Controlling setTimeout
This feature allows you to control the behavior of setTimeout, making it easier to test code that relies on delayed execution.
const sinon = require('sinon');
const clock = sinon.useFakeTimers();
setTimeout(() => {
console.log('This will be printed after 2 seconds');
}, 2000);
clock.tick(2000); // Fast-forwards time by 2000ms
Controlling setInterval
This feature allows you to control the behavior of setInterval, making it easier to test code that relies on repeated execution.
const sinon = require('sinon');
const clock = sinon.useFakeTimers();
let count = 0;
const intervalId = setInterval(() => {
count += 1;
console.log('Interval count:', count);
}, 1000);
clock.tick(3000); // Fast-forwards time by 3000ms
clearInterval(intervalId);
Mocking Date
This feature allows you to mock the Date object, making it easier to test code that relies on the current date and time.
const sinon = require('sinon');
const clock = sinon.useFakeTimers(new Date(2020, 1, 1));
console.log(new Date()); // Outputs: 2020-02-01T00:00:00.000Z
clock.tick(86400000); // Fast-forwards time by 1 day
console.log(new Date()); // Outputs: 2020-02-02T00:00:00.000Z
Jest is a JavaScript testing framework that comes with built-in utilities for mocking timers. It provides similar functionalities to @types/sinonjs__fake-timers, such as jest.useFakeTimers() and jest.advanceTimersByTime(). Jest is more comprehensive as it includes a full testing framework along with timer mocks.
Lolex is a standalone library for creating fake timers, similar to sinonjs/fake-timers. It allows you to control the flow of time in your tests. Lolex is often used as a dependency in other testing libraries, including Sinon itself.
npm install --save @types/sinonjs__fake-timers
This package contains type definitions for @sinonjs/fake-timers (https://github.com/sinonjs/fake-timers).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sinonjs__fake-timers.
These definitions were written by Wim Looman, Rogier Schouten, Yishai Zehavi, Remco Haszing, and Jaden Simon.
FAQs
TypeScript definitions for @sinonjs/fake-timers
The npm package @types/sinonjs__fake-timers receives a total of 3,334,887 weekly downloads. As such, @types/sinonjs__fake-timers popularity was classified as popular.
We found that @types/sinonjs__fake-timers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.