gpt4 book ai didi

javascript - SinonJS 假计时器不适用于 QUnit

转载 作者:行者123 更新时间:2023-11-29 15:49:53 25 4
gpt4 key购买 nike

我正在使用 SinonJS 和 QUnit 运行以下代码:

var clock = this.sandbox.useFakeTimers();
var el = jQuery("<div></div>");
el.appendTo(document.body);

el.animate({ height: "200px", width: "200px" });
clock.tick(1000);

equals("200px", el.css("height"));
equals("200px", el.css("width"));

但是测试失败了,看起来 jQuery 使用的是真实时钟而不是假时钟。

我使用的是 Chrome 12.0.742.122。

有什么想法吗?

谢谢

最佳答案

jQuery is using window.webkitRequestAnimationFrame or window.mozRequestAnimationFrame instead of setInterval.

If you set window.mozRequestAnimationFrame to false before loading jQuery, it will use setTimeout and SinonJS will work properly.

关于javascript - SinonJS 假计时器不适用于 QUnit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6877787/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com