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:
parent
118696d77f
commit
ff70255c66
@ -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;
|
||||
})
|
Loading…
Reference in New Issue
Block a user