Revert "Revert "uncomment "flaky" qunit tests""

This reverts commit 82253e385e.
This commit is contained in:
Chris Van 2012-01-11 10:43:20 -08:00
Родитель e2e547cad7
Коммит 0213210059
1 изменённых файлов: 19 добавлений и 22 удалений

Просмотреть файл

@ -59,29 +59,26 @@ $(document).ready(function() {
this.check(true); this.check(true);
}); });
// These tests are flaky. module('ACR nightly compatible', $.extend({}, acrFixture, {
// See https://ci.mozilla.org/job/amo-master-js/2168/console setup: function() {
var nightlyVer = $(document.body).attr('data-nightly-version');
// We're running Nightly, and we're going to pretend all the
// add-ons are compatible with 8.0.
acrFixture.setup.call(this, nightlyVer, true, nightlyVer);
}
}));
test('No pitch balloon', function() {
this.check(false);
});
// module('ACR nightly compatible', $.extend({}, acrFixture, { module('ACR non-nightly compatible', $.extend({}, acrFixture, {
// setup: function() { setup: function() {
// var nightlyVer = $(document.body).attr('data-nightly-version'); acrFixture.setup.call(this, '4.0', false);
// // We're running Nightly, and we're going to pretend all the }
// // add-ons are compatible with 8.0. }));
// acrFixture.setup.call(this, nightlyVer, true, nightlyVer); test('No pitch balloon', function() {
// } this.check(false);
// })); });
// test('No pitch balloon', function() {
// this.check(false);
// });
//
// module('ACR non-nightly compatible', $.extend({}, acrFixture, {
// setup: function() {
// acrFixture.setup.call(this, '4.0', false);
// }
// }));
// test('No pitch balloon', function() {
// this.check(false);
// });
var acrOverrideFixture = { var acrOverrideFixture = {