From 9bc6a64798d70f62823efa43cdf74123e2a2ae7e Mon Sep 17 00:00:00 2001 From: Leo Horie Date: Thu, 19 May 2016 01:21:07 -0400 Subject: [PATCH] increase timeout threshold because 20 is too close to frame budget @ 60fps --- ospec/ospec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ospec/ospec.js b/ospec/ospec.js index 0bc6c73a..7f6374b2 100644 --- a/ospec/ospec.js +++ b/ospec/ospec.js @@ -65,7 +65,7 @@ module.exports = new function init() { var fn = fns[cursor++] if (fn.length > 0) { - var timeout = 0, delay = 20, s = new Date + var timeout = 0, delay = 40, s = new Date var isDone = false var body = fn.toString() var arg = (body.match(/\(([\w_$]+)/) || body.match(/([\w_$]+)\s*=>/) || []).pop()