1
0
mirror of synced 2024-11-22 04:56:08 +03:00

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.
This commit is contained in:
Kevin Brown 2019-08-21 22:43:24 -04:00
parent 118696d77f
commit ff70255c66

View File

@ -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;
})