From f833c39ed36adce5c5d45864f2d22d465fa431cf Mon Sep 17 00:00:00 2001
From: Edna Morales
Date: Tue, 29 Jul 2014 09:10:44 -0400
Subject: [PATCH] added documentation for manual tests
---
test/tests.js | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/test/tests.js b/test/tests.js
index 3f785ec..8c4d22b 100644
--- a/test/tests.js
+++ b/test/tests.js
@@ -45,11 +45,18 @@ exports.defineManualTests = function (contentEl, createActionButton) {
}, 1000 * duration);
}
+ contentEl.innerHTML = 'Splashscreen Tests
' +
+ 'Note for WP: AutoHideSplashScreen must be set to false in config.xml
' +
+ '' +
+ 'Expected result: Will show the Cordova splashscreen for 1 second' +
+ '
' +
+ 'Expected result: Will show the Cordova splashscreen for 5 seconds';
+
createActionButton('Show for 1 second', function () {
showFor(1);
- });
+ }, 'show1');
createActionButton('Show for 5 seconds', function () {
showFor(5);
- });
+ }, 'show5');
};