Skip to content

Commit

Permalink
Remove test for issue 397
Browse files Browse the repository at this point in the history
The issue didn't see a second comment from the original poster in more
than three years, and no one else stepped up with the PR to implement
the proposal.

The commented out test should be removed
  • Loading branch information
mroderick committed May 23, 2017
1 parent 64d51be commit 05e2d11
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 05e2d11

Please sign in to comment.