From ff70255c66f44a43051744f97524be9a7f42ff6c Mon Sep 17 00:00:00 2001 From: Kevin Brown Date: Wed, 21 Aug 2019 22:43:24 -0400 Subject: [PATCH] Remove old saucelabs bridge We no longer test on saucelabs because their service was spotty at times, so we no longer need this additional logging. --- tests/helpers.js | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/tests/helpers.js b/tests/helpers.js index 9409c8b6..b0359793 100644 --- a/tests/helpers.js +++ b/tests/helpers.js @@ -17,34 +17,6 @@ MockContainer.prototype.isOpen = function () { return this.isOpen; }; -var log = []; -var testName; - -QUnit.done(function (test_results) { - var tests = []; - for(var i = 0, len = log.length; i < len; i++) { - var details = log[i]; - tests.push({ - name: details.name, - result: details.result, - expected: details.expected, - actual: details.actual, - source: details.source - }); - } - test_results.tests = tests; - - window.global_test_results = test_results; -}); -QUnit.testStart(function(testDetails){ - QUnit.log(function(details){ - if (!details.result) { - details.name = testDetails.name; - log.push(details); - } - }); -}); - define('qunit', function () { return QUnit; }) \ No newline at end of file