Skip to content

Commit

Permalink
Merge pull request #1420 from mroderick/remove-issue-397-test
Browse files Browse the repository at this point in the history
Remove test for issue 397
  • Loading branch information
mroderick committed May 23, 2017
2 parents 64d51be + 05e2d11 commit 5301cc1
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions test/issues/issues-test.js
Expand Up @@ -38,26 +38,6 @@ describe("issues", function () {
testSinonFakeTimersWith(1000, 1001);
});

it.skip("#397", function () {
var clock = sinon.useFakeTimers();

var cb2 = sinon.spy();
var cb1 = sinon.spy(function () {
setTimeout(cb2, 0);
});

setTimeout(cb1, 0);

clock.tick(10);
assert(cb1.called);
assert(!cb2.called);

clock.tick(10);
assert(cb2.called);

clock.restore();
});

describe("#458", function () {
if (typeof require("fs").readFileSync !== "undefined") {
describe("on node", function () {
Expand Down

0 comments on commit 5301cc1

Please sign in to comment.