@wdio/browserstack-service 9.33.1 → 9.33.2
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/accessibility-handler.d.ts +6 -0
- package/build/cleanup.js +2 -2
- package/build/index.js +12 -5
- package/package.json +1 -1
|
@@ -10,6 +10,12 @@ declare class _AccessibilityHandler {
|
|
|
10
10
|
private _browser;
|
|
11
11
|
private isAppAutomate;
|
|
12
12
|
private _framework?;
|
|
13
|
+
/**
|
|
14
|
+
* Frameworks whose per-test lifecycle flows through beforeTest/afterTest.
|
|
15
|
+
* WDIO's jasmine adapter emits the same service hooks as mocha (SDK-7190);
|
|
16
|
+
* cucumber goes through beforeScenario/afterScenario instead.
|
|
17
|
+
*/
|
|
18
|
+
private static readonly TEST_HOOK_FRAMEWORKS;
|
|
13
19
|
private _platformA11yMeta;
|
|
14
20
|
private _caps;
|
|
15
21
|
private _suiteFile?;
|