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');
};