UNPKG

482 BTypeScriptView Raw
1/// <reference types="q" />
2import * as q from 'q';
3import { Config } from '../config';
4import { DriverProvider } from './driverProvider';
5export declare class Hosted extends DriverProvider {
6 constructor(config: Config);
7 /**
8 * Configure and launch (if applicable) the object's environment.
9 * @public
10 * @return {q.promise} A promise which will resolve when the environment is
11 * ready to test.
12 */
13 protected setupDriverEnv(): q.Promise<any>;
14}