15 lines
482 B
TypeScript
15 lines
482 B
TypeScript
|
/// <reference types="q" />
|
||
|
import * as q from 'q';
|
||
|
import { Config } from '../config';
|
||
|
import { DriverProvider } from './driverProvider';
|
||
|
export declare class Hosted extends DriverProvider {
|
||
|
constructor(config: 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.
|
||
|
*/
|
||
|
protected setupDriverEnv(): q.Promise<any>;
|
||
|
}
|