"use strict";Object.defineProperty(exports,"__esModule",{value:true});/* * This is an implementation of the Hosted Driver Provider. * It is responsible for setting up the account object, tearing * it down, and setting up the driver correctly. */constq=require("q");constlogger_1=require("../logger");constdriverProvider_1=require("./driverProvider");letlogger=newlogger_1.Logger('hosted');classHostedextendsdriverProvider_1.DriverProvider{constructor(config){super(config);}/** * Configure and launch (if applicable) the object's environment. * @public * @return {q.promise} A promise which will resolve when the environment is * ready to test. */setupDriverEnv(){logger.info('Using the selenium server at '+this.config_.seleniumAddress);returnq.fcall(function(){});}}exports.Hosted=Hosted;//# sourceMappingURL=hosted.js.map