mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 22:17:49 +00:00
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
|
/*global module,browser*/
|
||
|
|
||
|
module.exports = function launch() {
|
||
|
'use strict';
|
||
|
browser.ignoreSynchronization = true;
|
||
|
browser.get('https://localhost:1984/');
|
||
|
browser.sleep(2000); // 20 seconds
|
||
|
};
|