From 9f1afea9e197a2956e0d1c4023e88d116999f458 Mon Sep 17 00:00:00 2001 From: Pat Cavit Date: Thu, 19 May 2016 11:53:41 -0700 Subject: [PATCH] Match @lhorie style I don't usually write JS w/o semicolons, so no surprise I got this wrong at first. --- api/tests/test-limiter.js | 2 +- api/tests/test-router.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api/tests/test-limiter.js b/api/tests/test-limiter.js index ece28c69..8d4456ca 100644 --- a/api/tests/test-limiter.js +++ b/api/tests/test-limiter.js @@ -9,7 +9,7 @@ var limiter = require("../limiter") o.spec("fps limiter", function() { var $window, root - [ + void [ "setTimeout", "requestAnimationFrame", ].forEach(function(type) { diff --git a/api/tests/test-router.js b/api/tests/test-router.js index c203e020..e7a0aab5 100644 --- a/api/tests/test-router.js +++ b/api/tests/test-router.js @@ -13,12 +13,12 @@ var makeRouter = require("../router") o.spec("m.route", function() { var $window, root, router - [ + void [ "setTimeout", "requestAnimationFrame" ].forEach(function(timing) { o.spec(timing, function() { - [ + void [ "#", "?", "#!",