Repository: cordova-plugin-camera Updated Branches: refs/heads/master eb98015e8 -> a33c35152
CB-12650: Fix manual test for uploading image Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/commit/a33c3515 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/tree/a33c3515 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/diff/a33c3515 Branch: refs/heads/master Commit: a33c35152e806811350a1e1aff35a6e5e0a27249 Parents: eb98015 Author: Nikita Matrosov <[email protected]> Authored: Wed Apr 12 16:54:39 2017 +0300 Committer: Alexander Sorokin <[email protected]> Committed: Tue Apr 25 15:25:20 2017 +0300 ---------------------------------------------------------------------- tests/plugin.xml | 2 +- tests/tests.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/a33c3515/tests/plugin.xml ---------------------------------------------------------------------- diff --git a/tests/plugin.xml b/tests/plugin.xml index f7e902a..7b39371 100644 --- a/tests/plugin.xml +++ b/tests/plugin.xml @@ -26,7 +26,7 @@ <name>Cordova Camera Plugin Tests</name> <license>Apache 2.0</license> - <dependency id="cordova-plugin-file" version=">=2.0.0" /> + <dependency id="cordova-plugin-file-transfer" /> <js-module src="tests.js" name="tests"> </js-module> http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/a33c3515/tests/tests.js ---------------------------------------------------------------------- diff --git a/tests/tests.js b/tests/tests.js index 222a839..0c85188 100644 --- a/tests/tests.js +++ b/tests/tests.js @@ -177,7 +177,7 @@ exports.defineManualTests = function (contentEl, createActionButton) { ft.onprogress = function (progressEvent) { console.log('progress: ' + progressEvent.loaded + ' of ' + progressEvent.total); }; - var server = "http://cordova-filetransfer.jitsu.com"; + var server = "http://sheltered-retreat-43956.herokuapp.com"; ft.upload(pictureUrl, server + '/upload', win, fail, options); function win(information_back) { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
