node doesn't like floating point numbers as setTimeout arg

This commit is contained in:
Leo Horie 2016-05-20 22:55:21 -04:00
parent b1e8f61c87
commit 4e65357242
3 changed files with 3 additions and 3 deletions

View file

@ -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() {