[Tests] Separate out page launcher

WTD-1287
This commit is contained in:
Victor Woeltjen
2015-07-30 11:15:03 -07:00
parent d5c835e777
commit a03046400c
27 changed files with 214 additions and 269 deletions

View File

@@ -0,0 +1,8 @@
/*global module,browser*/
module.exports = function launch() {
'use strict';
browser.ignoreSynchronization = true;
browser.get('https://localhost:1984/');
browser.sleep(2000); // 20 seconds
};