diff --git a/tests/plugin.xml b/tests/plugin.xml
index cb90303..ea2a188 100644
--- a/tests/plugin.xml
+++ b/tests/plugin.xml
@@ -26,8 +26,6 @@
Cordova Camera Plugin Tests
Apache 2.0
-
-
diff --git a/tests/tests.js b/tests/tests.js
index 23bc470..2e76581 100644
--- a/tests/tests.js
+++ b/tests/tests.js
@@ -19,7 +19,7 @@
*
*/
-/* globals Camera, resolveLocalFileSystemURL, FileEntry, CameraPopoverOptions, FileTransfer, FileUploadOptions, LocalFileSystem, MSApp */
+/* globals Camera, resolveLocalFileSystemURL, FileEntry, CameraPopoverOptions, LocalFileSystem, MSApp */
/* eslint-env jasmine */
exports.defineAutoTests = function () {
@@ -167,26 +167,6 @@ exports.defineManualTests = function (contentEl, createActionButton) {
};
}
- function uploadImage () {
- var ft = new FileTransfer();
- var options = new FileUploadOptions();
- options.fileKey = 'photo';
- options.fileName = 'test.jpg';
- options.mimeType = 'image/jpeg';
- ft.onprogress = function (progressEvent) {
- console.log('progress: ' + progressEvent.loaded + ' of ' + progressEvent.total);
- };
- var server = 'http://sheltered-retreat-43956.herokuapp.com';
-
- ft.upload(pictureUrl, server + '/upload', win, fail, options);
- function win (information_back) {
- log('upload complete');
- }
- function fail (message) {
- log('upload failed: ' + JSON.stringify(message));
- }
- }
-
function logCallback (apiName, success) {
return function () {
log('Call to ' + apiName + (success ? ' success: ' : ' failed: ') + JSON.stringify([].slice.call(arguments)));
@@ -498,10 +478,6 @@ exports.defineManualTests = function (contentEl, createActionButton) {
writeImage();
}, 'write');
- createActionButton('Upload Image', function () {
- uploadImage();
- }, 'upload');
-
createActionButton('Draw Using Canvas', function () {
displayImageUsingCanvas();
}, 'draw_canvas');