28 lines
1.3 KiB
TypeScript
28 lines
1.3 KiB
TypeScript
|
|
import type { Options } from '@wdio/types';
|
||
|
|
export declare const validObjectOrArray: (object: object) => object is object | Array<unknown>;
|
||
|
|
/**
|
||
|
|
* remove line numbers from file path, ex:
|
||
|
|
* `/foo:9` or `c:\bar:14:5`
|
||
|
|
* @param {string} filePath path to spec file
|
||
|
|
* @returns {string}
|
||
|
|
*/
|
||
|
|
export declare function removeLineNumbers(filePath: string): string;
|
||
|
|
/**
|
||
|
|
* does spec file path contain Cucumber's line number, ex
|
||
|
|
* `/foo/bar:9` or `c:\bar\foo:14:5`
|
||
|
|
* @param {string|string[]} spec
|
||
|
|
*/
|
||
|
|
export declare function isCucumberFeatureWithLineNumber(spec: string | string[]): boolean;
|
||
|
|
export declare function isCloudCapability(caps: WebdriverIO.Capabilities): boolean;
|
||
|
|
/**
|
||
|
|
* Creates a configuration object while providing types for both TypeScript and Javascript
|
||
|
|
*/
|
||
|
|
export declare const defineConfig: (options?: Partial<WebdriverIO.Config> | WebdriverIO.Config) => WebdriverIO.Config;
|
||
|
|
/**
|
||
|
|
* validates configurations based on default values
|
||
|
|
* @param {Object} defaults object describing all allowed properties
|
||
|
|
* @param {Object} options option to check against
|
||
|
|
* @return {Object} validated config enriched with default values
|
||
|
|
*/
|
||
|
|
export declare function validateConfig<T>(defaults: Options.Definition<T>, options: T, keysToKeep?: (keyof T)[]): T;
|
||
|
|
//# sourceMappingURL=utils.d.ts.map
|