node doesn't like floating point numbers as setTimeout arg
This commit is contained in:
parent
b1e8f61c87
commit
4e65357242
3 changed files with 3 additions and 3 deletions
|
|
@ -7,7 +7,7 @@ var m = require("../../render/hyperscript")
|
|||
var apiMounter = require("../../api/mount")
|
||||
|
||||
o.spec("m.mount", function() {
|
||||
var FRAME_BUDGET = 1000 / 60
|
||||
var FRAME_BUDGET = Math.floor(1000 / 60)
|
||||
var $window, root, mount, renderers
|
||||
|
||||
o.beforeEach(function() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue