From 028725468aee4a1b30de3058356084ed9f5e3191 Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Mon, 13 Mar 2017 11:18:33 -0700 Subject: [PATCH] CB-12524: Removing the downgrade test, because thanks to Google's Tool Change, this will forever fail. --- spec/e2e/update.spec.js | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/spec/e2e/update.spec.js b/spec/e2e/update.spec.js index a2296c0d..2bf47170 100644 --- a/spec/e2e/update.spec.js +++ b/spec/e2e/update.spec.js @@ -78,20 +78,12 @@ describe('update', function() { }, UPDATE_TIMEOUT); - it('Test#003 : should downgrade major version and build the project', function(done) { - var projectname = 'testupdate'; - var projectid = 'com.test.update.app2'; - - testUpdate(projectname, projectid, platformEdge, platformOld, true, done); - }, UPDATE_TIMEOUT); - - // TODO: After next Android release, add tests for minor/patch version update }); describe('cleanup', function () { it('Test#004 : remove cloned old platform', function() { - shell.rm('-rf', platformOld.path); + //shell.rm('-rf', platformOld.path); }); });