From 520d15a0603d9110655a13d4e0b80fa6f039f630 Mon Sep 17 00:00:00 2001 From: Leo Horie Date: Fri, 1 Jul 2016 00:01:28 -0400 Subject: [PATCH] remove non-deterministic test --- api/tests/test-throttle.js | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/api/tests/test-throttle.js b/api/tests/test-throttle.js index 0663f98e..4f7c7ee5 100644 --- a/api/tests/test-throttle.js +++ b/api/tests/test-throttle.js @@ -87,22 +87,4 @@ o.spec("throttle", function() { done() }, FRAME_BUDGET) }) - - o("it doesn't swallow redraws", function(done, timeout) { - timeout(60) - - throttled() - - setTimeout(function() { - throttled() - setTimeout(function() { - throttled() - setTimeout(function() { - o(spy.callCount).equals(3) - - done() - }, FRAME_BUDGET) - }, 0) - }, 0) - }) })