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
|
|
@ -8,7 +8,7 @@ var m = require("../../render/hyperscript")
|
|||
var apiRouter = require("../../api/router")
|
||||
|
||||
o.spec("m.route", function() {
|
||||
var FRAME_BUDGET = 1000 / 60
|
||||
var FRAME_BUDGET = Math.floor(1000 / 60)
|
||||
var $window, root, route, renderers
|
||||
|
||||
o.beforeEach(function() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue