doc-detective-common 4.22.0 → 4.23.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/dist/index.cjs +274 -74
- package/dist/schemas/schemas.json +274 -74
- package/dist/types/generated/config_v3.d.ts +1 -1
- package/dist/types/generated/context_v3.d.ts +1 -1
- package/dist/types/generated/report_v3.d.ts +1 -1
- package/dist/types/generated/resolvedTests_v3.d.ts +2 -2
- package/dist/types/generated/spec_v3.d.ts +1 -1
- package/dist/types/generated/test_v3.d.ts +1 -1
- package/package.json +1 -1
|
@@ -180,7 +180,7 @@ export interface Context {
|
|
|
180
180
|
*/
|
|
181
181
|
platforms?: ("linux" | "mac" | "windows" | "android" | "ios") | ("linux" | "mac" | "windows" | "android" | "ios")[];
|
|
182
182
|
/**
|
|
183
|
-
* Browsers to run tests on.
|
|
183
|
+
* Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.
|
|
184
184
|
*/
|
|
185
185
|
browsers?: ("chrome" | "firefox" | "safari" | "webkit") | Browser | (("chrome" | "firefox" | "safari" | "webkit") | Browser1)[];
|
|
186
186
|
/**
|
|
@@ -20,7 +20,7 @@ export interface Context {
|
|
|
20
20
|
*/
|
|
21
21
|
platforms?: ("linux" | "mac" | "windows" | "android" | "ios") | ("linux" | "mac" | "windows" | "android" | "ios")[];
|
|
22
22
|
/**
|
|
23
|
-
* Browsers to run tests on.
|
|
23
|
+
* Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.
|
|
24
24
|
*/
|
|
25
25
|
browsers?: ("chrome" | "firefox" | "safari" | "webkit") | Browser | (("chrome" | "firefox" | "safari" | "webkit") | Browser1)[];
|
|
26
26
|
/**
|
|
@@ -104,7 +104,7 @@ export interface Context {
|
|
|
104
104
|
*/
|
|
105
105
|
platforms?: ("linux" | "mac" | "windows" | "android" | "ios") | ("linux" | "mac" | "windows" | "android" | "ios")[];
|
|
106
106
|
/**
|
|
107
|
-
* Browsers to run tests on.
|
|
107
|
+
* Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.
|
|
108
108
|
*/
|
|
109
109
|
browsers?: ("chrome" | "firefox" | "safari" | "webkit") | Browser | (("chrome" | "firefox" | "safari" | "webkit") | Browser1)[];
|
|
110
110
|
/**
|
|
@@ -218,7 +218,7 @@ export interface Context {
|
|
|
218
218
|
*/
|
|
219
219
|
platforms?: ("linux" | "mac" | "windows" | "android" | "ios") | ("linux" | "mac" | "windows" | "android" | "ios")[];
|
|
220
220
|
/**
|
|
221
|
-
* Browsers to run tests on.
|
|
221
|
+
* Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.
|
|
222
222
|
*/
|
|
223
223
|
browsers?: ("chrome" | "firefox" | "safari" | "webkit") | Browser | (("chrome" | "firefox" | "safari" | "webkit") | Browser1)[];
|
|
224
224
|
/**
|
|
@@ -657,7 +657,7 @@ export interface Context1 {
|
|
|
657
657
|
*/
|
|
658
658
|
platforms?: ("linux" | "mac" | "windows" | "android" | "ios") | ("linux" | "mac" | "windows" | "android" | "ios")[];
|
|
659
659
|
/**
|
|
660
|
-
* Browsers to run tests on.
|
|
660
|
+
* Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.
|
|
661
661
|
*/
|
|
662
662
|
browsers?: ("chrome" | "firefox" | "safari" | "webkit") | Browser2 | (("chrome" | "firefox" | "safari" | "webkit") | Browser3)[];
|
|
663
663
|
/**
|
|
@@ -81,7 +81,7 @@ export interface Context {
|
|
|
81
81
|
*/
|
|
82
82
|
platforms?: ("linux" | "mac" | "windows" | "android" | "ios") | ("linux" | "mac" | "windows" | "android" | "ios")[];
|
|
83
83
|
/**
|
|
84
|
-
* Browsers to run tests on.
|
|
84
|
+
* Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.
|
|
85
85
|
*/
|
|
86
86
|
browsers?: ("chrome" | "firefox" | "safari" | "webkit") | Browser | (("chrome" | "firefox" | "safari" | "webkit") | Browser1)[];
|
|
87
87
|
/**
|
|
@@ -4022,7 +4022,7 @@ export interface Context {
|
|
|
4022
4022
|
*/
|
|
4023
4023
|
platforms?: ("linux" | "mac" | "windows" | "android" | "ios") | ("linux" | "mac" | "windows" | "android" | "ios")[];
|
|
4024
4024
|
/**
|
|
4025
|
-
* Browsers to run tests on.
|
|
4025
|
+
* Browsers to run tests on. On a mobile (`android`/`ios`) platform entry, the browser runs on the managed device: `chrome` on Android, `safari` on iOS (other combinations skip the context), and it fills in automatically when omitted. Device browsers don't take desktop display config: authored `window`/`viewport` dimensions and `headless: false` are rejected on mobile entries (the device owns its display — control it via the device descriptor's `headless`/`deviceType`); `headless: true` matches this schema's default and is ignored.
|
|
4026
4026
|
*/
|
|
4027
4027
|
browsers?: ("chrome" | "firefox" | "safari" | "webkit") | Browser | (("chrome" | "firefox" | "safari" | "webkit") | Browser1)[];
|
|
4028
4028
|
/**
|