From 16576d90145be4de6dd628227f3e65b9a4f4545c Mon Sep 17 00:00:00 2001 From: audreyso Date: Mon, 3 Oct 2016 17:50:51 -0700 Subject: [PATCH] CB-8995 renamed start to plugman install/uninstall start to make CordovaLib tests more descriptive --- cordova-lib/spec-plugman/install.spec.js | 4 ++-- cordova-lib/spec-plugman/uninstall.spec.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cordova-lib/spec-plugman/install.spec.js b/cordova-lib/spec-plugman/install.spec.js index e64f54da5..c9376f0e2 100644 --- a/cordova-lib/spec-plugman/install.spec.js +++ b/cordova-lib/spec-plugman/install.spec.js @@ -113,7 +113,7 @@ var TEST_XML = '\n' + ' \n' + '\n'; -describe('start', function() { +describe('plugman install start', function() { var config_queue_add, proc, actions_push, ca, emit; beforeEach(function() { @@ -129,7 +129,7 @@ describe('start', function() { }); }); - it('start', function() { + it('plugman install start', function() { shell.rm('-rf', project); shell.cp('-R', path.join(srcProject, '*'), project); diff --git a/cordova-lib/spec-plugman/uninstall.spec.js b/cordova-lib/spec-plugman/uninstall.spec.js index c1c3a71e7..af3a67850 100644 --- a/cordova-lib/spec-plugman/uninstall.spec.js +++ b/cordova-lib/spec-plugman/uninstall.spec.js @@ -75,7 +75,7 @@ function uninstallPromise(f) { return f.then(function() { done = true; }, function(err) { done = err; }); } -describe('start', function() { +describe('plugman uninstall start', function() { beforeEach(function () { var origParseElementtreeSync = xmlHelpers.parseElementtreeSync.bind(xmlHelpers); spyOn(xmlHelpers, 'parseElementtreeSync').andCallFake(function(path) { @@ -84,7 +84,7 @@ describe('start', function() { }); }); - it('start', function() { + it('plugman uninstall start', function() { shell.rm('-rf', project, project2, project3); shell.cp('-R', path.join(srcProject, '*'), project); shell.cp('-R', path.join(srcProject, '*'), project2);