From 7129fb2c12910f2f5505686d97635c4037b4223f Mon Sep 17 00:00:00 2001 From: Alexander Sorokin Date: Tue, 12 Jul 2016 12:28:58 +0300 Subject: [PATCH] CB-11553 Pend failing Appium tests on Sauce Labs for the time being (reverted from commit b69571724035f41642f3ee612c5b66e1f0c4386c) --- appium-tests/android/android.spec.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/appium-tests/android/android.spec.js b/appium-tests/android/android.spec.js index 6dc69e1..6c91609 100644 --- a/appium-tests/android/android.spec.js +++ b/appium-tests/android/android.spec.js @@ -292,12 +292,6 @@ describe('Camera tests Android.', function () { } } - function checkSauce(pending) { - if (global.USE_SAUCE) { - pending('This test cannot run on Sauce Labs yet. We\'re working on it!'); - } - } - it('camera.ui.util configuring driver and starting a session', function (done) { getDriver() .then(function () { @@ -362,7 +356,6 @@ describe('Camera tests Android.', function () { // getPicture() with mediaType: VIDEO, sourceType: PHOTOLIBRARY it('camera.ui.spec.2 Selecting only videos', function (done) { checkSession(done); - checkSauce(pending); var spec = function () { var options = { sourceType: cameraConstants.PictureSourceType.PHOTOLIBRARY, mediaType: cameraConstants.MediaType.VIDEO }; @@ -495,7 +488,6 @@ describe('Camera tests Android.', function () { it('camera.ui.spec.6 Verifying target image size, sourceType=PHOTOLIBRARY', function (done) { checkSession(done); - checkSauce(pending); var spec = generateSpec({ quality: 50, allowEdit: false, @@ -526,7 +518,6 @@ describe('Camera tests Android.', function () { it('camera.ui.spec.8 Verifying target image size, sourceType=PHOTOLIBRARY, DestinationType=NATIVE_URI', function (done) { checkSession(done); - checkSauce(pending); var spec = generateSpec({ quality: 50, allowEdit: false, @@ -558,7 +549,6 @@ describe('Camera tests Android.', function () { it('camera.ui.spec.10 Verifying target image size, sourceType=PHOTOLIBRARY, DestinationType=NATIVE_URI, quality=100', function (done) { checkSession(done); - checkSauce(pending); var spec = generateSpec({ quality: 100, allowEdit: true, @@ -576,7 +566,6 @@ describe('Camera tests Android.', function () { generateOptions().forEach(function (spec) { it('camera.ui.spec.11.' + spec.id + ' Combining options. ' + spec.description, function (done) { checkSession(done); - checkSauce(pending); if (spec.options.sourceType == cameraConstants.PictureSourceType.CAMERA) { checkCamera(pending); }