You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2014/08/19 03:41:14 UTC

[5/5] git commit: added documentation for new test

added documentation for new test


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/commit/6f9b59fd
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/tree/6f9b59fd
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/diff/6f9b59fd

Branch: refs/heads/master
Commit: 6f9b59fd8832b90f79c88d8a1af7369e9fadfabf
Parents: e1afbb6
Author: Edna Morales <ed...@ednas-mbp-2.raleigh.ibm.com>
Authored: Mon Aug 18 13:39:29 2014 -0400
Committer: Edna Morales <ed...@ednas-mbp-2.raleigh.ibm.com>
Committed: Mon Aug 18 13:39:29 2014 -0400

----------------------------------------------------------------------
 tests/tests.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/blob/6f9b59fd/tests/tests.js
----------------------------------------------------------------------
diff --git a/tests/tests.js b/tests/tests.js
index ad70bf7..fa330ee 100644
--- a/tests/tests.js
+++ b/tests/tests.js
@@ -914,6 +914,7 @@ exports.defineManualTests = function (contentEl, createActionButton) {
         '<h3>The following tests should display an image of the Apache feather in the status box</h3>' +
         '<div id="cdv_image"></div>' +
         '<div id="native_image"></div>' +
+        '<div id="non-existent_dir"></div>' +
         '<h2>Video File Transfer Tests</h2>' +
         '<h3>The following tests should display a video in the status box. The video should play when play is pressed</h3>' +
         '<div id="cdv_video"></div>' +
@@ -932,7 +933,7 @@ exports.defineManualTests = function (contentEl, createActionButton) {
 
     createActionButton('Download to a non-existent dir (should work)', function () {
         downloadImg(imageURL, function (entry) { return entry.toURL(); }, new Image, '/nonExistentDirTest/');
-    }, 'actions');
+    }, 'non-existent_dir');
 
     createActionButton('Download and play video (cdvfile)', function () {
         var videoElement = document.createElement('video');