doc-detective-common 4.15.3 → 4.16.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 +280 -0
- package/dist/schemas/schemas.json +280 -0
- package/dist/types/generated/config_v3.d.ts +16 -0
- package/dist/types/generated/config_v3.d.ts.map +1 -1
- package/dist/types/generated/context_v3.d.ts +12 -0
- package/dist/types/generated/context_v3.d.ts.map +1 -1
- package/dist/types/generated/report_v3.d.ts +12 -0
- package/dist/types/generated/report_v3.d.ts.map +1 -1
- package/dist/types/generated/resolvedTests_v3.d.ts +28 -0
- package/dist/types/generated/resolvedTests_v3.d.ts.map +1 -1
- package/dist/types/generated/spec_v3.d.ts +12 -0
- package/dist/types/generated/spec_v3.d.ts.map +1 -1
- package/dist/types/generated/test_v3.d.ts +16 -0
- package/dist/types/generated/test_v3.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1036,6 +1036,11 @@ var schemas_default = {
|
|
|
1036
1036
|
],
|
|
1037
1037
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
1038
1038
|
},
|
|
1039
|
+
explicit: {
|
|
1040
|
+
type: "boolean",
|
|
1041
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
1042
|
+
readOnly: true
|
|
1043
|
+
},
|
|
1039
1044
|
headless: {
|
|
1040
1045
|
type: "boolean",
|
|
1041
1046
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -1110,6 +1115,11 @@ var schemas_default = {
|
|
|
1110
1115
|
],
|
|
1111
1116
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
1112
1117
|
},
|
|
1118
|
+
explicit: {
|
|
1119
|
+
type: "boolean",
|
|
1120
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
1121
|
+
readOnly: true
|
|
1122
|
+
},
|
|
1113
1123
|
headless: {
|
|
1114
1124
|
type: "boolean",
|
|
1115
1125
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -1154,6 +1164,15 @@ var schemas_default = {
|
|
|
1154
1164
|
}
|
|
1155
1165
|
}
|
|
1156
1166
|
]
|
|
1167
|
+
},
|
|
1168
|
+
browserFallback: {
|
|
1169
|
+
description: "Per-context override for the config-level [`browserFallback`](config) policy that governs whether a context whose browser can't start a driver session falls back to another available browser. Accepts the same values \u2014 `auto`, `explicit`, `off` \u2014 and, when set, takes precedence over the config-level value for the contexts this entry expands into. Omit it to inherit the config-level policy (which itself defaults to `auto`).",
|
|
1170
|
+
type: "string",
|
|
1171
|
+
enum: [
|
|
1172
|
+
"auto",
|
|
1173
|
+
"explicit",
|
|
1174
|
+
"off"
|
|
1175
|
+
]
|
|
1157
1176
|
}
|
|
1158
1177
|
},
|
|
1159
1178
|
components: {
|
|
@@ -1196,6 +1215,11 @@ var schemas_default = {
|
|
|
1196
1215
|
],
|
|
1197
1216
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
1198
1217
|
},
|
|
1218
|
+
explicit: {
|
|
1219
|
+
type: "boolean",
|
|
1220
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
1221
|
+
readOnly: true
|
|
1222
|
+
},
|
|
1199
1223
|
headless: {
|
|
1200
1224
|
type: "boolean",
|
|
1201
1225
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -29463,6 +29487,16 @@ var schemas_default = {
|
|
|
29463
29487
|
type: "string",
|
|
29464
29488
|
minLength: 1,
|
|
29465
29489
|
pattern: "\\S"
|
|
29490
|
+
},
|
|
29491
|
+
browserFallback: {
|
|
29492
|
+
description: "Controls whether a context whose browser cannot start a driver session falls back to another available browser instead of being skipped. Drivers are validated by execution (not just presence) so a present-but-broken driver \u2014 for example a partially downloaded geckodriver \u2014 no longer silently skips Firefox coverage. `auto` (default): fall back to any other available browser for both auto-selected and explicitly requested browsers; a fallback away from an explicitly requested browser reports the context as `WARNING` rather than `PASS`. `explicit`: fall back only when the browser was auto-selected; an explicitly requested browser whose driver is broken is skipped with a diagnostic reason. `off`: never fall back across browsers (driver validation and diagnostic skip reasons still apply). Equivalent to `--browser-fallback` on the CLI.",
|
|
29493
|
+
type: "string",
|
|
29494
|
+
enum: [
|
|
29495
|
+
"auto",
|
|
29496
|
+
"explicit",
|
|
29497
|
+
"off"
|
|
29498
|
+
],
|
|
29499
|
+
default: "auto"
|
|
29466
29500
|
}
|
|
29467
29501
|
},
|
|
29468
29502
|
components: {
|
|
@@ -56976,6 +57010,11 @@ var schemas_default = {
|
|
|
56976
57010
|
],
|
|
56977
57011
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
56978
57012
|
},
|
|
57013
|
+
explicit: {
|
|
57014
|
+
type: "boolean",
|
|
57015
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
57016
|
+
readOnly: true
|
|
57017
|
+
},
|
|
56979
57018
|
headless: {
|
|
56980
57019
|
type: "boolean",
|
|
56981
57020
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -57050,6 +57089,11 @@ var schemas_default = {
|
|
|
57050
57089
|
],
|
|
57051
57090
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
57052
57091
|
},
|
|
57092
|
+
explicit: {
|
|
57093
|
+
type: "boolean",
|
|
57094
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
57095
|
+
readOnly: true
|
|
57096
|
+
},
|
|
57053
57097
|
headless: {
|
|
57054
57098
|
type: "boolean",
|
|
57055
57099
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -57094,6 +57138,15 @@ var schemas_default = {
|
|
|
57094
57138
|
}
|
|
57095
57139
|
}
|
|
57096
57140
|
]
|
|
57141
|
+
},
|
|
57142
|
+
browserFallback: {
|
|
57143
|
+
description: "Per-context override for the config-level [`browserFallback`](config) policy that governs whether a context whose browser can't start a driver session falls back to another available browser. Accepts the same values \u2014 `auto`, `explicit`, `off` \u2014 and, when set, takes precedence over the config-level value for the contexts this entry expands into. Omit it to inherit the config-level policy (which itself defaults to `auto`).",
|
|
57144
|
+
type: "string",
|
|
57145
|
+
enum: [
|
|
57146
|
+
"auto",
|
|
57147
|
+
"explicit",
|
|
57148
|
+
"off"
|
|
57149
|
+
]
|
|
57097
57150
|
}
|
|
57098
57151
|
},
|
|
57099
57152
|
components: {
|
|
@@ -57136,6 +57189,11 @@ var schemas_default = {
|
|
|
57136
57189
|
],
|
|
57137
57190
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
57138
57191
|
},
|
|
57192
|
+
explicit: {
|
|
57193
|
+
type: "boolean",
|
|
57194
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
57195
|
+
readOnly: true
|
|
57196
|
+
},
|
|
57139
57197
|
headless: {
|
|
57140
57198
|
type: "boolean",
|
|
57141
57199
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -62240,6 +62298,11 @@ var schemas_default = {
|
|
|
62240
62298
|
],
|
|
62241
62299
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
62242
62300
|
},
|
|
62301
|
+
explicit: {
|
|
62302
|
+
type: "boolean",
|
|
62303
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
62304
|
+
readOnly: true
|
|
62305
|
+
},
|
|
62243
62306
|
headless: {
|
|
62244
62307
|
type: "boolean",
|
|
62245
62308
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -62314,6 +62377,11 @@ var schemas_default = {
|
|
|
62314
62377
|
],
|
|
62315
62378
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
62316
62379
|
},
|
|
62380
|
+
explicit: {
|
|
62381
|
+
type: "boolean",
|
|
62382
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
62383
|
+
readOnly: true
|
|
62384
|
+
},
|
|
62317
62385
|
headless: {
|
|
62318
62386
|
type: "boolean",
|
|
62319
62387
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -62358,6 +62426,15 @@ var schemas_default = {
|
|
|
62358
62426
|
}
|
|
62359
62427
|
}
|
|
62360
62428
|
]
|
|
62429
|
+
},
|
|
62430
|
+
browserFallback: {
|
|
62431
|
+
description: "Per-context override for the config-level [`browserFallback`](config) policy that governs whether a context whose browser can't start a driver session falls back to another available browser. Accepts the same values \u2014 `auto`, `explicit`, `off` \u2014 and, when set, takes precedence over the config-level value for the contexts this entry expands into. Omit it to inherit the config-level policy (which itself defaults to `auto`).",
|
|
62432
|
+
type: "string",
|
|
62433
|
+
enum: [
|
|
62434
|
+
"auto",
|
|
62435
|
+
"explicit",
|
|
62436
|
+
"off"
|
|
62437
|
+
]
|
|
62361
62438
|
}
|
|
62362
62439
|
},
|
|
62363
62440
|
components: {
|
|
@@ -62400,6 +62477,11 @@ var schemas_default = {
|
|
|
62400
62477
|
],
|
|
62401
62478
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
62402
62479
|
},
|
|
62480
|
+
explicit: {
|
|
62481
|
+
type: "boolean",
|
|
62482
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
62483
|
+
readOnly: true
|
|
62484
|
+
},
|
|
62403
62485
|
headless: {
|
|
62404
62486
|
type: "boolean",
|
|
62405
62487
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -90667,6 +90749,16 @@ var schemas_default = {
|
|
|
90667
90749
|
type: "string",
|
|
90668
90750
|
minLength: 1,
|
|
90669
90751
|
pattern: "\\S"
|
|
90752
|
+
},
|
|
90753
|
+
browserFallback: {
|
|
90754
|
+
description: "Controls whether a context whose browser cannot start a driver session falls back to another available browser instead of being skipped. Drivers are validated by execution (not just presence) so a present-but-broken driver \u2014 for example a partially downloaded geckodriver \u2014 no longer silently skips Firefox coverage. `auto` (default): fall back to any other available browser for both auto-selected and explicitly requested browsers; a fallback away from an explicitly requested browser reports the context as `WARNING` rather than `PASS`. `explicit`: fall back only when the browser was auto-selected; an explicitly requested browser whose driver is broken is skipped with a diagnostic reason. `off`: never fall back across browsers (driver validation and diagnostic skip reasons still apply). Equivalent to `--browser-fallback` on the CLI.",
|
|
90755
|
+
type: "string",
|
|
90756
|
+
enum: [
|
|
90757
|
+
"auto",
|
|
90758
|
+
"explicit",
|
|
90759
|
+
"off"
|
|
90760
|
+
],
|
|
90761
|
+
default: "auto"
|
|
90670
90762
|
}
|
|
90671
90763
|
},
|
|
90672
90764
|
components: {
|
|
@@ -118242,6 +118334,11 @@ var schemas_default = {
|
|
|
118242
118334
|
],
|
|
118243
118335
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
118244
118336
|
},
|
|
118337
|
+
explicit: {
|
|
118338
|
+
type: "boolean",
|
|
118339
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
118340
|
+
readOnly: true
|
|
118341
|
+
},
|
|
118245
118342
|
headless: {
|
|
118246
118343
|
type: "boolean",
|
|
118247
118344
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -118316,6 +118413,11 @@ var schemas_default = {
|
|
|
118316
118413
|
],
|
|
118317
118414
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
118318
118415
|
},
|
|
118416
|
+
explicit: {
|
|
118417
|
+
type: "boolean",
|
|
118418
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
118419
|
+
readOnly: true
|
|
118420
|
+
},
|
|
118319
118421
|
headless: {
|
|
118320
118422
|
type: "boolean",
|
|
118321
118423
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -118360,6 +118462,15 @@ var schemas_default = {
|
|
|
118360
118462
|
}
|
|
118361
118463
|
}
|
|
118362
118464
|
]
|
|
118465
|
+
},
|
|
118466
|
+
browserFallback: {
|
|
118467
|
+
description: "Per-context override for the config-level [`browserFallback`](config) policy that governs whether a context whose browser can't start a driver session falls back to another available browser. Accepts the same values \u2014 `auto`, `explicit`, `off` \u2014 and, when set, takes precedence over the config-level value for the contexts this entry expands into. Omit it to inherit the config-level policy (which itself defaults to `auto`).",
|
|
118468
|
+
type: "string",
|
|
118469
|
+
enum: [
|
|
118470
|
+
"auto",
|
|
118471
|
+
"explicit",
|
|
118472
|
+
"off"
|
|
118473
|
+
]
|
|
118363
118474
|
}
|
|
118364
118475
|
},
|
|
118365
118476
|
components: {
|
|
@@ -118402,6 +118513,11 @@ var schemas_default = {
|
|
|
118402
118513
|
],
|
|
118403
118514
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
118404
118515
|
},
|
|
118516
|
+
explicit: {
|
|
118517
|
+
type: "boolean",
|
|
118518
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
118519
|
+
readOnly: true
|
|
118520
|
+
},
|
|
118405
118521
|
headless: {
|
|
118406
118522
|
type: "boolean",
|
|
118407
118523
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -118851,6 +118967,11 @@ var schemas_default = {
|
|
|
118851
118967
|
],
|
|
118852
118968
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
118853
118969
|
},
|
|
118970
|
+
explicit: {
|
|
118971
|
+
type: "boolean",
|
|
118972
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
118973
|
+
readOnly: true
|
|
118974
|
+
},
|
|
118854
118975
|
headless: {
|
|
118855
118976
|
type: "boolean",
|
|
118856
118977
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -118925,6 +119046,11 @@ var schemas_default = {
|
|
|
118925
119046
|
],
|
|
118926
119047
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
118927
119048
|
},
|
|
119049
|
+
explicit: {
|
|
119050
|
+
type: "boolean",
|
|
119051
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
119052
|
+
readOnly: true
|
|
119053
|
+
},
|
|
118928
119054
|
headless: {
|
|
118929
119055
|
type: "boolean",
|
|
118930
119056
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -118969,6 +119095,15 @@ var schemas_default = {
|
|
|
118969
119095
|
}
|
|
118970
119096
|
}
|
|
118971
119097
|
]
|
|
119098
|
+
},
|
|
119099
|
+
browserFallback: {
|
|
119100
|
+
description: "Per-context override for the config-level [`browserFallback`](config) policy that governs whether a context whose browser can't start a driver session falls back to another available browser. Accepts the same values \u2014 `auto`, `explicit`, `off` \u2014 and, when set, takes precedence over the config-level value for the contexts this entry expands into. Omit it to inherit the config-level policy (which itself defaults to `auto`).",
|
|
119101
|
+
type: "string",
|
|
119102
|
+
enum: [
|
|
119103
|
+
"auto",
|
|
119104
|
+
"explicit",
|
|
119105
|
+
"off"
|
|
119106
|
+
]
|
|
118972
119107
|
}
|
|
118973
119108
|
},
|
|
118974
119109
|
components: {
|
|
@@ -119011,6 +119146,11 @@ var schemas_default = {
|
|
|
119011
119146
|
],
|
|
119012
119147
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
119013
119148
|
},
|
|
119149
|
+
explicit: {
|
|
119150
|
+
type: "boolean",
|
|
119151
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
119152
|
+
readOnly: true
|
|
119153
|
+
},
|
|
119014
119154
|
headless: {
|
|
119015
119155
|
type: "boolean",
|
|
119016
119156
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -147113,6 +147253,11 @@ var schemas_default = {
|
|
|
147113
147253
|
],
|
|
147114
147254
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
147115
147255
|
},
|
|
147256
|
+
explicit: {
|
|
147257
|
+
type: "boolean",
|
|
147258
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
147259
|
+
readOnly: true
|
|
147260
|
+
},
|
|
147116
147261
|
headless: {
|
|
147117
147262
|
type: "boolean",
|
|
147118
147263
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -175284,6 +175429,11 @@ var schemas_default = {
|
|
|
175284
175429
|
],
|
|
175285
175430
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
175286
175431
|
},
|
|
175432
|
+
explicit: {
|
|
175433
|
+
type: "boolean",
|
|
175434
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
175435
|
+
readOnly: true
|
|
175436
|
+
},
|
|
175287
175437
|
headless: {
|
|
175288
175438
|
type: "boolean",
|
|
175289
175439
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -175358,6 +175508,11 @@ var schemas_default = {
|
|
|
175358
175508
|
],
|
|
175359
175509
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
175360
175510
|
},
|
|
175511
|
+
explicit: {
|
|
175512
|
+
type: "boolean",
|
|
175513
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
175514
|
+
readOnly: true
|
|
175515
|
+
},
|
|
175361
175516
|
headless: {
|
|
175362
175517
|
type: "boolean",
|
|
175363
175518
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -175402,6 +175557,15 @@ var schemas_default = {
|
|
|
175402
175557
|
}
|
|
175403
175558
|
}
|
|
175404
175559
|
]
|
|
175560
|
+
},
|
|
175561
|
+
browserFallback: {
|
|
175562
|
+
description: "Per-context override for the config-level [`browserFallback`](config) policy that governs whether a context whose browser can't start a driver session falls back to another available browser. Accepts the same values \u2014 `auto`, `explicit`, `off` \u2014 and, when set, takes precedence over the config-level value for the contexts this entry expands into. Omit it to inherit the config-level policy (which itself defaults to `auto`).",
|
|
175563
|
+
type: "string",
|
|
175564
|
+
enum: [
|
|
175565
|
+
"auto",
|
|
175566
|
+
"explicit",
|
|
175567
|
+
"off"
|
|
175568
|
+
]
|
|
175405
175569
|
}
|
|
175406
175570
|
},
|
|
175407
175571
|
components: {
|
|
@@ -175444,6 +175608,11 @@ var schemas_default = {
|
|
|
175444
175608
|
],
|
|
175445
175609
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
175446
175610
|
},
|
|
175611
|
+
explicit: {
|
|
175612
|
+
type: "boolean",
|
|
175613
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
175614
|
+
readOnly: true
|
|
175615
|
+
},
|
|
175447
175616
|
headless: {
|
|
175448
175617
|
type: "boolean",
|
|
175449
175618
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -175893,6 +176062,11 @@ var schemas_default = {
|
|
|
175893
176062
|
],
|
|
175894
176063
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
175895
176064
|
},
|
|
176065
|
+
explicit: {
|
|
176066
|
+
type: "boolean",
|
|
176067
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
176068
|
+
readOnly: true
|
|
176069
|
+
},
|
|
175896
176070
|
headless: {
|
|
175897
176071
|
type: "boolean",
|
|
175898
176072
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -175967,6 +176141,11 @@ var schemas_default = {
|
|
|
175967
176141
|
],
|
|
175968
176142
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
175969
176143
|
},
|
|
176144
|
+
explicit: {
|
|
176145
|
+
type: "boolean",
|
|
176146
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
176147
|
+
readOnly: true
|
|
176148
|
+
},
|
|
175970
176149
|
headless: {
|
|
175971
176150
|
type: "boolean",
|
|
175972
176151
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -176011,6 +176190,15 @@ var schemas_default = {
|
|
|
176011
176190
|
}
|
|
176012
176191
|
}
|
|
176013
176192
|
]
|
|
176193
|
+
},
|
|
176194
|
+
browserFallback: {
|
|
176195
|
+
description: "Per-context override for the config-level [`browserFallback`](config) policy that governs whether a context whose browser can't start a driver session falls back to another available browser. Accepts the same values \u2014 `auto`, `explicit`, `off` \u2014 and, when set, takes precedence over the config-level value for the contexts this entry expands into. Omit it to inherit the config-level policy (which itself defaults to `auto`).",
|
|
176196
|
+
type: "string",
|
|
176197
|
+
enum: [
|
|
176198
|
+
"auto",
|
|
176199
|
+
"explicit",
|
|
176200
|
+
"off"
|
|
176201
|
+
]
|
|
176014
176202
|
}
|
|
176015
176203
|
},
|
|
176016
176204
|
components: {
|
|
@@ -176053,6 +176241,11 @@ var schemas_default = {
|
|
|
176053
176241
|
],
|
|
176054
176242
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
176055
176243
|
},
|
|
176244
|
+
explicit: {
|
|
176245
|
+
type: "boolean",
|
|
176246
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
176247
|
+
readOnly: true
|
|
176248
|
+
},
|
|
176056
176249
|
headless: {
|
|
176057
176250
|
type: "boolean",
|
|
176058
176251
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -204155,6 +204348,11 @@ var schemas_default = {
|
|
|
204155
204348
|
],
|
|
204156
204349
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
204157
204350
|
},
|
|
204351
|
+
explicit: {
|
|
204352
|
+
type: "boolean",
|
|
204353
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
204354
|
+
readOnly: true
|
|
204355
|
+
},
|
|
204158
204356
|
headless: {
|
|
204159
204357
|
type: "boolean",
|
|
204160
204358
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -234282,6 +234480,11 @@ var schemas_default = {
|
|
|
234282
234480
|
],
|
|
234283
234481
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
234284
234482
|
},
|
|
234483
|
+
explicit: {
|
|
234484
|
+
type: "boolean",
|
|
234485
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
234486
|
+
readOnly: true
|
|
234487
|
+
},
|
|
234285
234488
|
headless: {
|
|
234286
234489
|
type: "boolean",
|
|
234287
234490
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -234356,6 +234559,11 @@ var schemas_default = {
|
|
|
234356
234559
|
],
|
|
234357
234560
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
234358
234561
|
},
|
|
234562
|
+
explicit: {
|
|
234563
|
+
type: "boolean",
|
|
234564
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
234565
|
+
readOnly: true
|
|
234566
|
+
},
|
|
234359
234567
|
headless: {
|
|
234360
234568
|
type: "boolean",
|
|
234361
234569
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -234400,6 +234608,15 @@ var schemas_default = {
|
|
|
234400
234608
|
}
|
|
234401
234609
|
}
|
|
234402
234610
|
]
|
|
234611
|
+
},
|
|
234612
|
+
browserFallback: {
|
|
234613
|
+
description: "Per-context override for the config-level [`browserFallback`](config) policy that governs whether a context whose browser can't start a driver session falls back to another available browser. Accepts the same values \u2014 `auto`, `explicit`, `off` \u2014 and, when set, takes precedence over the config-level value for the contexts this entry expands into. Omit it to inherit the config-level policy (which itself defaults to `auto`).",
|
|
234614
|
+
type: "string",
|
|
234615
|
+
enum: [
|
|
234616
|
+
"auto",
|
|
234617
|
+
"explicit",
|
|
234618
|
+
"off"
|
|
234619
|
+
]
|
|
234403
234620
|
}
|
|
234404
234621
|
},
|
|
234405
234622
|
components: {
|
|
@@ -234442,6 +234659,11 @@ var schemas_default = {
|
|
|
234442
234659
|
],
|
|
234443
234660
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
234444
234661
|
},
|
|
234662
|
+
explicit: {
|
|
234663
|
+
type: "boolean",
|
|
234664
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
234665
|
+
readOnly: true
|
|
234666
|
+
},
|
|
234445
234667
|
headless: {
|
|
234446
234668
|
type: "boolean",
|
|
234447
234669
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -234891,6 +235113,11 @@ var schemas_default = {
|
|
|
234891
235113
|
],
|
|
234892
235114
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
234893
235115
|
},
|
|
235116
|
+
explicit: {
|
|
235117
|
+
type: "boolean",
|
|
235118
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
235119
|
+
readOnly: true
|
|
235120
|
+
},
|
|
234894
235121
|
headless: {
|
|
234895
235122
|
type: "boolean",
|
|
234896
235123
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -234965,6 +235192,11 @@ var schemas_default = {
|
|
|
234965
235192
|
],
|
|
234966
235193
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
234967
235194
|
},
|
|
235195
|
+
explicit: {
|
|
235196
|
+
type: "boolean",
|
|
235197
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
235198
|
+
readOnly: true
|
|
235199
|
+
},
|
|
234968
235200
|
headless: {
|
|
234969
235201
|
type: "boolean",
|
|
234970
235202
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -235009,6 +235241,15 @@ var schemas_default = {
|
|
|
235009
235241
|
}
|
|
235010
235242
|
}
|
|
235011
235243
|
]
|
|
235244
|
+
},
|
|
235245
|
+
browserFallback: {
|
|
235246
|
+
description: "Per-context override for the config-level [`browserFallback`](config) policy that governs whether a context whose browser can't start a driver session falls back to another available browser. Accepts the same values \u2014 `auto`, `explicit`, `off` \u2014 and, when set, takes precedence over the config-level value for the contexts this entry expands into. Omit it to inherit the config-level policy (which itself defaults to `auto`).",
|
|
235247
|
+
type: "string",
|
|
235248
|
+
enum: [
|
|
235249
|
+
"auto",
|
|
235250
|
+
"explicit",
|
|
235251
|
+
"off"
|
|
235252
|
+
]
|
|
235012
235253
|
}
|
|
235013
235254
|
},
|
|
235014
235255
|
components: {
|
|
@@ -235051,6 +235292,11 @@ var schemas_default = {
|
|
|
235051
235292
|
],
|
|
235052
235293
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
235053
235294
|
},
|
|
235295
|
+
explicit: {
|
|
235296
|
+
type: "boolean",
|
|
235297
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
235298
|
+
readOnly: true
|
|
235299
|
+
},
|
|
235054
235300
|
headless: {
|
|
235055
235301
|
type: "boolean",
|
|
235056
235302
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -263153,6 +263399,11 @@ var schemas_default = {
|
|
|
263153
263399
|
],
|
|
263154
263400
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
263155
263401
|
},
|
|
263402
|
+
explicit: {
|
|
263403
|
+
type: "boolean",
|
|
263404
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
263405
|
+
readOnly: true
|
|
263406
|
+
},
|
|
263156
263407
|
headless: {
|
|
263157
263408
|
type: "boolean",
|
|
263158
263409
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -318223,6 +318474,11 @@ var schemas_default = {
|
|
|
318223
318474
|
],
|
|
318224
318475
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
318225
318476
|
},
|
|
318477
|
+
explicit: {
|
|
318478
|
+
type: "boolean",
|
|
318479
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
318480
|
+
readOnly: true
|
|
318481
|
+
},
|
|
318226
318482
|
headless: {
|
|
318227
318483
|
type: "boolean",
|
|
318228
318484
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -318297,6 +318553,11 @@ var schemas_default = {
|
|
|
318297
318553
|
],
|
|
318298
318554
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
318299
318555
|
},
|
|
318556
|
+
explicit: {
|
|
318557
|
+
type: "boolean",
|
|
318558
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
318559
|
+
readOnly: true
|
|
318560
|
+
},
|
|
318300
318561
|
headless: {
|
|
318301
318562
|
type: "boolean",
|
|
318302
318563
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -318341,6 +318602,15 @@ var schemas_default = {
|
|
|
318341
318602
|
}
|
|
318342
318603
|
}
|
|
318343
318604
|
]
|
|
318605
|
+
},
|
|
318606
|
+
browserFallback: {
|
|
318607
|
+
description: "Per-context override for the config-level [`browserFallback`](config) policy that governs whether a context whose browser can't start a driver session falls back to another available browser. Accepts the same values \u2014 `auto`, `explicit`, `off` \u2014 and, when set, takes precedence over the config-level value for the contexts this entry expands into. Omit it to inherit the config-level policy (which itself defaults to `auto`).",
|
|
318608
|
+
type: "string",
|
|
318609
|
+
enum: [
|
|
318610
|
+
"auto",
|
|
318611
|
+
"explicit",
|
|
318612
|
+
"off"
|
|
318613
|
+
]
|
|
318344
318614
|
}
|
|
318345
318615
|
},
|
|
318346
318616
|
components: {
|
|
@@ -318383,6 +318653,11 @@ var schemas_default = {
|
|
|
318383
318653
|
],
|
|
318384
318654
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
318385
318655
|
},
|
|
318656
|
+
explicit: {
|
|
318657
|
+
type: "boolean",
|
|
318658
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
318659
|
+
readOnly: true
|
|
318660
|
+
},
|
|
318386
318661
|
headless: {
|
|
318387
318662
|
type: "boolean",
|
|
318388
318663
|
description: "If `true`, runs the browser in headless mode.",
|
|
@@ -346485,6 +346760,11 @@ var schemas_default = {
|
|
|
346485
346760
|
],
|
|
346486
346761
|
$comment: "`safari` is just a shortcut for `webkit`. Included for visibility and to reduce questions."
|
|
346487
346762
|
},
|
|
346763
|
+
explicit: {
|
|
346764
|
+
type: "boolean",
|
|
346765
|
+
description: "Set automatically during context resolution: `true` when the author explicitly requested this browser (as opposed to it being auto-selected as the default). The runner's cross-browser fallback uses it to decide whether substituting another engine reports `PASS` (auto-selected) or `WARNING` (explicitly pinned).",
|
|
346766
|
+
readOnly: true
|
|
346767
|
+
},
|
|
346488
346768
|
headless: {
|
|
346489
346769
|
type: "boolean",
|
|
346490
346770
|
description: "If `true`, runs the browser in headless mode.",
|