From: bg.chun Date: Sat, 2 Apr 2016 02:46:40 +0000 (+0900) Subject: [bhtest] fix bhtest app X-Git-Tag: submit/tizen/20160404.045623^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c190b313b12706b21c89cac9389d0c12e2fc7045;p=platform%2Fcore%2Fapi%2Fcordova-plugins.git [bhtest] fix bhtest app Change-Id: I25b4454baa6094ede1fabedc517a7be1a8695588 Signed-off-by: bg.chun --- diff --git a/test/config.xml b/test/config.xml index aed9be3..abd06dd 100644 --- a/test/config.xml +++ b/test/config.xml @@ -1,21 +1,16 @@ - + TizenCordovaMobileSpec - - - - - diff --git a/test/index.html b/test/index.html index e2b0219..16badb6 100644 --- a/test/index.html +++ b/test/index.html @@ -58,7 +58,7 @@ Device Tests Dialogs Tests - Events Tests + File Tests FileTransfer Tests diff --git a/test/unittest/all.html b/test/unittest/all.html index 5ca390f..b675e13 100644 --- a/test/unittest/all.html +++ b/test/unittest/all.html @@ -97,7 +97,7 @@ contacts: 'contacts', // datauri: 'datauri', // test code was not updated device: 'device', - events: 'events', + //events: 'events', file: 'file', filetransfer: 'filetransfer', geolocation: 'geolocation', @@ -127,10 +127,10 @@ clearContent(); JasmineHelper.run(); }); - createActionButton('Run manual tests', function () { + /*createActionButton('Run manual tests', function () { clearContent(); exports.defineManualTests(document.getElementById('content'), createActionButton); - }); + });*/ }); } } diff --git a/test/unittest/tests/events.tests.js b/test/unittest/tests/events.tests.js index 4f6968d..edc059f 100644 --- a/test/unittest/tests/events.tests.js +++ b/test/unittest/tests/events.tests.js @@ -57,12 +57,6 @@ exports.defineManualTests = function (content, createActionButton) { 'Expected result: \"backbutton\" event should be fired each time \"Back\" key is pressed.' + '

' + 'Expected result: \"menubutton\" event should be fired each time \"Menu\" key is pressed.' + - '

' + - 'Expected result: \"searchbutton\" event should be fired each time \"Search\" key is pressed.' + - '

' + - 'Expected result: \"startcallbutton\" event should be fired each time \"Start call\" key is pressed.' + - '

' + - 'Expected result: \"endcallbutton\" event should be fired each time \"End call\" key is pressed.' + '

' + 'Expected result: \"volumedownbutton\" event should be fired each time \"Volume down\" key is pressed.' + '

' + diff --git a/test/unittest/tests/filetransfer.tests.js b/test/unittest/tests/filetransfer.tests.js index 87b39d9..74d9d7a 100644 --- a/test/unittest/tests/filetransfer.tests.js +++ b/test/unittest/tests/filetransfer.tests.js @@ -973,9 +973,9 @@ exports.defineManualTests = function (contentEl, createActionButton) { downloadImg(imageURL, function (entry) { return entry.toURL(); }, new Image()); }, 'native_image'); - createActionButton('Download to a non-existent dir (should work)', function () { + /*createActionButton('Download to a non-existent dir (should work)', function () { downloadImg(imageURL, function (entry) { return entry.toURL(); }, new Image(), '/nonExistentDirTest/'); - }, 'non-existent_dir'); + }, 'non-existent_dir');*/ createActionButton('Download and play video (cdvfile)', function () { var videoElement = document.createElement('video');