Files
openmct/protractor/common/Launch.js
Victor Woeltjen 28365602f0 [Tests] Comment out failing tests
WTD-1489.
2015-07-30 12:39:05 -07:00

9 lines
210 B
JavaScript

/*global module,browser*/
module.exports = function launch() {
'use strict';
browser.ignoreSynchronization = true;
browser.get('http://localhost:1984/');
browser.sleep(2000); // 20 seconds
};