UNPKG

@wdio/devtools-service

Version:
42 lines (41 loc) 1.55 kB
export declare const PAGE_TRANSITION_COMMANDS: string[]; export declare const DEFAULT_LAUNCH_CAPS: WebdriverIO.Capabilities; export declare const INTERNAL_COMMANDS: string[]; export declare const CONTEXT_CHANGE_COMMANDS: string[]; /** * Existing pattern (kept for any external consumers) */ export declare const SPEC_FILE_PATTERN: RegExp; /** * Parser options */ export declare const PARSE_PLUGINS: readonly ["typescript", "jsx", "decorators-legacy", "classProperties", "dynamicImport"]; /** * Test framework identifiers */ export declare const TEST_FN_NAMES: readonly ["it", "test", "specify", "fit", "xit"]; export declare const SUITE_FN_NAMES: readonly ["describe", "context", "suite"]; export declare const STEP_FN_NAMES: readonly ["Given", "When", "Then", "And", "But", "defineStep"]; /** * File/type recognizers */ export declare const STEP_FILE_RE: RegExp; export declare const STEP_DIR_RE: RegExp; export declare const SPEC_FILE_RE: RegExp; export declare const FEATURE_FILE_RE: RegExp; export declare const SOURCE_FILE_EXT_RE: RegExp; /** * Gherkin Feature/Scenario line */ export declare const FEATURE_OR_SCENARIO_LINE_RE: RegExp; /** * Step definition textual scan regexes */ export declare const STEP_DEF_REGEX_LITERAL_RE: RegExp; export declare const STEP_DEF_STRING_RE: RegExp; /** * Step directories discovery */ export declare const STEPS_DIR_CANDIDATES: readonly ["step-definitions", "step_definitions", "steps"]; export declare const STEPS_DIR_ASCENT_MAX = 6; export declare const STEPS_GLOBAL_SEARCH_MAX_DEPTH = 5;