Skip to content

Instantly share code, notes, and snippets.

@macedd
Created May 16, 2018 23:23
Show Gist options
  • Save macedd/c6b04978d1389e3295520a0b641d9502 to your computer and use it in GitHub Desktop.
Save macedd/c6b04978d1389e3295520a0b641d9502 to your computer and use it in GitHub Desktop.
Mocha Sinon Fake Timer
const sinon = require('sinon');
module.exports = function() {
/**
* Fake timers (setImmediate, setTimeout)
*/
before(function() {
this.clock = sinon.useFakeTimers(new Date());
});
after(function() {
this.clock.restore();
});
};
const assert = require('assert');
const app = require('express')();
describe('mocha-timer', function() {
// usage of the timer in a test
require('./mocha-timer')();
it('loads', function() {
});
it('injects sinon', function() {
assert(this.clock);
});
it('mocks setImmediate', function() {
let called = false;
setImmediate(() => {
called = true;
});
assert(Object.keys(this.clock.timers).length == 1);
this.clock.runAll();
assert(called);
});
it('mocks nested setImmediate', function() {
let called = false;
setImmediate(() => {
setImmediate(() => {
called = true;
});
});
assert(Object.keys(this.clock.timers).length == 1);
this.clock.runAll();
assert(called);
});
it('mocks async setImmediate', function() {
let called = false;
setImmediate(async () => {
// WIP
const promise = new Promise((done) => {
require('http').get('http://nodejs.org/dist/index.json', (res) => {
called = true;
done();
});
});
return await promise;
});
this.clock.runAll();
// it does not wait for the promise resolution
// assert(called);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment