@wdio/browserstack-service 9.32.1 → 9.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cleanup.d.ts +1 -0
- package/build/cleanup.js +166 -2
- package/build/config.d.ts +3 -0
- package/build/constants.d.ts +1 -0
- package/build/index.js +54 -7
- package/build/types.d.ts +1 -0
- package/package.json +1 -1
package/build/config.d.ts
CHANGED
|
@@ -20,7 +20,10 @@ declare class BrowserStackConfig {
|
|
|
20
20
|
percyBuildId?: number | null;
|
|
21
21
|
isPercyAutoEnabled: boolean;
|
|
22
22
|
sdkRunID: string;
|
|
23
|
+
killSignal?: string;
|
|
24
|
+
logsUploaded: boolean;
|
|
23
25
|
constructor(options: BrowserstackConfig & Options.Testrunner, config: Options.Testrunner, capabilities?: Capabilities.TestrunnerCapabilities);
|
|
24
26
|
sentFunnelData(): void;
|
|
27
|
+
setKillSignal(signal: string): void;
|
|
25
28
|
}
|
|
26
29
|
export default BrowserStackConfig;
|
package/build/constants.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export declare const BROWSERSTACK_TESTHUB_JWT = "BROWSERSTACK_TESTHUB_JWT";
|
|
|
45
45
|
export declare const BSTACK_TCG_AUTH_RESULT = "BSTACK_TCG_AUTH_RESULT";
|
|
46
46
|
export declare const TESTOPS_SCREENSHOT_ENV = "BS_TESTOPS_ALLOW_SCREENSHOTS";
|
|
47
47
|
export declare const BROWSERSTACK_TESTHUB_UUID = "BROWSERSTACK_TESTHUB_UUID";
|
|
48
|
+
export declare const BROWSERSTACK_KILL_SIGNAL = "BROWSERSTACK_SDK_KILL_SIGNAL";
|
|
48
49
|
export declare const TEST_ANALYTICS_ID = "TEST_ANALYTICS_ID";
|
|
49
50
|
export declare const PERF_MEASUREMENT_ENV = "BROWSERSTACK_O11Y_PERF_MEASUREMENT";
|
|
50
51
|
export declare const RERUN_TESTS_ENV = "BROWSERSTACK_RERUN_TESTS";
|