Repository: cordova-lib Updated Branches: refs/heads/master 2fd68baed -> a79240cf4
CB-8995 renamed start to plugman install/uninstall start to make CordovaLib tests more descriptive This closes #495 Project: http://git-wip-us.apache.org/repos/asf/cordova-lib/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-lib/commit/a79240cf Tree: http://git-wip-us.apache.org/repos/asf/cordova-lib/tree/a79240cf Diff: http://git-wip-us.apache.org/repos/asf/cordova-lib/diff/a79240cf Branch: refs/heads/master Commit: a79240cf4691dc91a2e567e91c00514b88719a34 Parents: 2fd68ba Author: audreyso <[email protected]> Authored: Mon Oct 3 17:50:51 2016 -0700 Committer: Steve Gill <[email protected]> Committed: Tue Oct 4 10:53:50 2016 -0700 ---------------------------------------------------------------------- cordova-lib/spec-plugman/install.spec.js | 4 ++-- cordova-lib/spec-plugman/uninstall.spec.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/a79240cf/cordova-lib/spec-plugman/install.spec.js ---------------------------------------------------------------------- diff --git a/cordova-lib/spec-plugman/install.spec.js b/cordova-lib/spec-plugman/install.spec.js index e64f54d..c9376f0 100644 --- a/cordova-lib/spec-plugman/install.spec.js +++ b/cordova-lib/spec-plugman/install.spec.js @@ -113,7 +113,7 @@ var TEST_XML = '<?xml version="1.0" encoding="UTF-8"?>\n' + ' <preference name="webviewbounce" value="true" />\n' + '</widget>\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); http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/a79240cf/cordova-lib/spec-plugman/uninstall.spec.js ---------------------------------------------------------------------- diff --git a/cordova-lib/spec-plugman/uninstall.spec.js b/cordova-lib/spec-plugman/uninstall.spec.js index c1c3a71..af3a678 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); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
