doc-detective-common 4.7.0 → 4.9.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/detectTests.d.ts +16 -1
- package/dist/detectTests.d.ts.map +1 -1
- package/dist/detectTests.js +93 -14
- package/dist/detectTests.js.map +1 -1
- package/dist/index.cjs +1754 -16
- package/dist/schemas/schemas.json +1700 -4
- package/dist/types/generated/config_v3.d.ts +5 -1
- package/dist/types/generated/config_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 +9 -1
- package/dist/types/generated/resolvedTests_v3.d.ts.map +1 -1
- package/dist/types/generated/spec_v3.d.ts +4 -0
- package/dist/types/generated/spec_v3.d.ts.map +1 -1
- package/dist/types/generated/step_v3.d.ts +64 -0
- package/dist/types/generated/step_v3.d.ts.map +1 -1
- package/dist/types/generated/test_v3.d.ts +132 -0
- package/dist/types/generated/test_v3.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -552,7 +552,7 @@ var schemas_default = {
|
|
|
552
552
|
default: "."
|
|
553
553
|
},
|
|
554
554
|
reporters: {
|
|
555
|
-
description: "Reporters to use when emitting test results. Built-in reporters: `terminal`, `json`, `html`. Custom reporters registered via `registerReporter()` can also be referenced by name.",
|
|
555
|
+
description: "Reporters to use when emitting test results. Built-in reporters: `terminal`, `json`, `html`, `runFolder`. The `runFolder` reporter (enabled by default) archives each run's results as `<output>/.doc-detective/run-<runId>/testResults.json`, beside any screenshots the run captured, in addition to the flat output the `json` reporter writes. Custom reporters registered via `registerReporter()` can also be referenced by name.",
|
|
556
556
|
type: "array",
|
|
557
557
|
items: {
|
|
558
558
|
type: "string",
|
|
@@ -560,7 +560,8 @@ var schemas_default = {
|
|
|
560
560
|
},
|
|
561
561
|
default: [
|
|
562
562
|
"terminal",
|
|
563
|
-
"json"
|
|
563
|
+
"json",
|
|
564
|
+
"runFolder"
|
|
564
565
|
]
|
|
565
566
|
},
|
|
566
567
|
specFilter: {
|
|
@@ -1413,6 +1414,13 @@ var schemas_default = {
|
|
|
1413
1414
|
],
|
|
1414
1415
|
additionalProperties: false,
|
|
1415
1416
|
title: "Source Location"
|
|
1417
|
+
},
|
|
1418
|
+
autoScreenshot: {
|
|
1419
|
+
type: "string",
|
|
1420
|
+
minLength: 1,
|
|
1421
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
1422
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
1423
|
+
readOnly: true
|
|
1416
1424
|
}
|
|
1417
1425
|
},
|
|
1418
1426
|
title: "Common"
|
|
@@ -1466,6 +1474,13 @@ var schemas_default = {
|
|
|
1466
1474
|
description: "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
1467
1475
|
default: false
|
|
1468
1476
|
},
|
|
1477
|
+
autoScreenshot: {
|
|
1478
|
+
type: "string",
|
|
1479
|
+
minLength: 1,
|
|
1480
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
1481
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
1482
|
+
readOnly: true
|
|
1483
|
+
},
|
|
1469
1484
|
location: {
|
|
1470
1485
|
type: "object",
|
|
1471
1486
|
description: "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -1583,6 +1598,13 @@ var schemas_default = {
|
|
|
1583
1598
|
],
|
|
1584
1599
|
additionalProperties: false,
|
|
1585
1600
|
title: "Source Location"
|
|
1601
|
+
},
|
|
1602
|
+
autoScreenshot: {
|
|
1603
|
+
type: "string",
|
|
1604
|
+
minLength: 1,
|
|
1605
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
1606
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
1607
|
+
readOnly: true
|
|
1586
1608
|
}
|
|
1587
1609
|
},
|
|
1588
1610
|
title: "Common"
|
|
@@ -1891,6 +1913,13 @@ var schemas_default = {
|
|
|
1891
1913
|
],
|
|
1892
1914
|
additionalProperties: false,
|
|
1893
1915
|
title: "Source Location"
|
|
1916
|
+
},
|
|
1917
|
+
autoScreenshot: {
|
|
1918
|
+
type: "string",
|
|
1919
|
+
minLength: 1,
|
|
1920
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
1921
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
1922
|
+
readOnly: true
|
|
1894
1923
|
}
|
|
1895
1924
|
},
|
|
1896
1925
|
title: "Common"
|
|
@@ -2243,6 +2272,13 @@ var schemas_default = {
|
|
|
2243
2272
|
],
|
|
2244
2273
|
additionalProperties: false,
|
|
2245
2274
|
title: "Source Location"
|
|
2275
|
+
},
|
|
2276
|
+
autoScreenshot: {
|
|
2277
|
+
type: "string",
|
|
2278
|
+
minLength: 1,
|
|
2279
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
2280
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
2281
|
+
readOnly: true
|
|
2246
2282
|
}
|
|
2247
2283
|
},
|
|
2248
2284
|
title: "Common"
|
|
@@ -3692,6 +3728,13 @@ var schemas_default = {
|
|
|
3692
3728
|
],
|
|
3693
3729
|
additionalProperties: false,
|
|
3694
3730
|
title: "Source Location"
|
|
3731
|
+
},
|
|
3732
|
+
autoScreenshot: {
|
|
3733
|
+
type: "string",
|
|
3734
|
+
minLength: 1,
|
|
3735
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
3736
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
3737
|
+
readOnly: true
|
|
3695
3738
|
}
|
|
3696
3739
|
},
|
|
3697
3740
|
title: "Common"
|
|
@@ -4234,6 +4277,13 @@ var schemas_default = {
|
|
|
4234
4277
|
],
|
|
4235
4278
|
additionalProperties: false,
|
|
4236
4279
|
title: "Source Location"
|
|
4280
|
+
},
|
|
4281
|
+
autoScreenshot: {
|
|
4282
|
+
type: "string",
|
|
4283
|
+
minLength: 1,
|
|
4284
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
4285
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
4286
|
+
readOnly: true
|
|
4237
4287
|
}
|
|
4238
4288
|
},
|
|
4239
4289
|
title: "Common"
|
|
@@ -5328,6 +5378,13 @@ var schemas_default = {
|
|
|
5328
5378
|
],
|
|
5329
5379
|
additionalProperties: false,
|
|
5330
5380
|
title: "Source Location"
|
|
5381
|
+
},
|
|
5382
|
+
autoScreenshot: {
|
|
5383
|
+
type: "string",
|
|
5384
|
+
minLength: 1,
|
|
5385
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
5386
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
5387
|
+
readOnly: true
|
|
5331
5388
|
}
|
|
5332
5389
|
},
|
|
5333
5390
|
title: "Common"
|
|
@@ -5664,6 +5721,13 @@ var schemas_default = {
|
|
|
5664
5721
|
],
|
|
5665
5722
|
additionalProperties: false,
|
|
5666
5723
|
title: "Source Location"
|
|
5724
|
+
},
|
|
5725
|
+
autoScreenshot: {
|
|
5726
|
+
type: "string",
|
|
5727
|
+
minLength: 1,
|
|
5728
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
5729
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
5730
|
+
readOnly: true
|
|
5667
5731
|
}
|
|
5668
5732
|
},
|
|
5669
5733
|
title: "Common"
|
|
@@ -5986,6 +6050,13 @@ var schemas_default = {
|
|
|
5986
6050
|
],
|
|
5987
6051
|
additionalProperties: false,
|
|
5988
6052
|
title: "Source Location"
|
|
6053
|
+
},
|
|
6054
|
+
autoScreenshot: {
|
|
6055
|
+
type: "string",
|
|
6056
|
+
minLength: 1,
|
|
6057
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
6058
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
6059
|
+
readOnly: true
|
|
5989
6060
|
}
|
|
5990
6061
|
},
|
|
5991
6062
|
title: "Common"
|
|
@@ -6330,6 +6401,13 @@ var schemas_default = {
|
|
|
6330
6401
|
],
|
|
6331
6402
|
additionalProperties: false,
|
|
6332
6403
|
title: "Source Location"
|
|
6404
|
+
},
|
|
6405
|
+
autoScreenshot: {
|
|
6406
|
+
type: "string",
|
|
6407
|
+
minLength: 1,
|
|
6408
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
6409
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
6410
|
+
readOnly: true
|
|
6333
6411
|
}
|
|
6334
6412
|
},
|
|
6335
6413
|
title: "Common"
|
|
@@ -7117,6 +7195,13 @@ var schemas_default = {
|
|
|
7117
7195
|
],
|
|
7118
7196
|
additionalProperties: false,
|
|
7119
7197
|
title: "Source Location"
|
|
7198
|
+
},
|
|
7199
|
+
autoScreenshot: {
|
|
7200
|
+
type: "string",
|
|
7201
|
+
minLength: 1,
|
|
7202
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
7203
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
7204
|
+
readOnly: true
|
|
7120
7205
|
}
|
|
7121
7206
|
},
|
|
7122
7207
|
title: "Common"
|
|
@@ -7462,6 +7547,13 @@ var schemas_default = {
|
|
|
7462
7547
|
],
|
|
7463
7548
|
additionalProperties: false,
|
|
7464
7549
|
title: "Source Location"
|
|
7550
|
+
},
|
|
7551
|
+
autoScreenshot: {
|
|
7552
|
+
type: "string",
|
|
7553
|
+
minLength: 1,
|
|
7554
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
7555
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
7556
|
+
readOnly: true
|
|
7465
7557
|
}
|
|
7466
7558
|
},
|
|
7467
7559
|
title: "Common"
|
|
@@ -7663,6 +7755,13 @@ var schemas_default = {
|
|
|
7663
7755
|
],
|
|
7664
7756
|
additionalProperties: false,
|
|
7665
7757
|
title: "Source Location"
|
|
7758
|
+
},
|
|
7759
|
+
autoScreenshot: {
|
|
7760
|
+
type: "string",
|
|
7761
|
+
minLength: 1,
|
|
7762
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
7763
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
7764
|
+
readOnly: true
|
|
7666
7765
|
}
|
|
7667
7766
|
},
|
|
7668
7767
|
title: "Common"
|
|
@@ -7775,6 +7874,13 @@ var schemas_default = {
|
|
|
7775
7874
|
],
|
|
7776
7875
|
additionalProperties: false,
|
|
7777
7876
|
title: "Source Location"
|
|
7877
|
+
},
|
|
7878
|
+
autoScreenshot: {
|
|
7879
|
+
type: "string",
|
|
7880
|
+
minLength: 1,
|
|
7881
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
7882
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
7883
|
+
readOnly: true
|
|
7778
7884
|
}
|
|
7779
7885
|
},
|
|
7780
7886
|
title: "Common"
|
|
@@ -7884,6 +7990,13 @@ var schemas_default = {
|
|
|
7884
7990
|
],
|
|
7885
7991
|
additionalProperties: false,
|
|
7886
7992
|
title: "Source Location"
|
|
7993
|
+
},
|
|
7994
|
+
autoScreenshot: {
|
|
7995
|
+
type: "string",
|
|
7996
|
+
minLength: 1,
|
|
7997
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
7998
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
7999
|
+
readOnly: true
|
|
7887
8000
|
}
|
|
7888
8001
|
},
|
|
7889
8002
|
title: "Common"
|
|
@@ -8480,6 +8593,13 @@ var schemas_default = {
|
|
|
8480
8593
|
],
|
|
8481
8594
|
additionalProperties: false,
|
|
8482
8595
|
title: "Source Location"
|
|
8596
|
+
},
|
|
8597
|
+
autoScreenshot: {
|
|
8598
|
+
type: "string",
|
|
8599
|
+
minLength: 1,
|
|
8600
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
8601
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
8602
|
+
readOnly: true
|
|
8483
8603
|
}
|
|
8484
8604
|
},
|
|
8485
8605
|
title: "Common"
|
|
@@ -8808,6 +8928,13 @@ var schemas_default = {
|
|
|
8808
8928
|
],
|
|
8809
8929
|
additionalProperties: false,
|
|
8810
8930
|
title: "Source Location"
|
|
8931
|
+
},
|
|
8932
|
+
autoScreenshot: {
|
|
8933
|
+
type: "string",
|
|
8934
|
+
minLength: 1,
|
|
8935
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
8936
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
8937
|
+
readOnly: true
|
|
8811
8938
|
}
|
|
8812
8939
|
},
|
|
8813
8940
|
title: "Common"
|
|
@@ -9946,6 +10073,11 @@ var schemas_default = {
|
|
|
9946
10073
|
type: "boolean",
|
|
9947
10074
|
default: false
|
|
9948
10075
|
},
|
|
10076
|
+
autoScreenshot: {
|
|
10077
|
+
description: "If `true`, captures a screenshot after every step that runs in a browser, in addition to any explicit `screenshot` steps. Images are saved in the per-run artifact directory (`<output>/.doc-detective/run-<runId>/`) at paths derived from spec, test, and context IDs plus the step's order, action, and ID (for example, `screenshots/<specId>/<testId>/<contextId>/01-goTo-s4f2a91c.png`), so the same step lands on the same relative path in every run's folder for run-over-run comparison. Specs and tests can override this value with their own `autoScreenshot` fields (test level wins over spec level, which wins over config level). Equivalent to `--auto-screenshot` on the CLI.",
|
|
10078
|
+
type: "boolean",
|
|
10079
|
+
default: false
|
|
10080
|
+
},
|
|
9949
10081
|
autoUpdate: {
|
|
9950
10082
|
description: "If `true` (default), the CLI checks for a newer published `doc-detective` on startup and self-updates before running tests. Updates happen for global (`npm i -g`) and `npx` installs only \u2014 local installs (where `doc-detective` is a project dep) get an informational message instead, since auto-updating would mutate the user's lockfile. CI environments and the `DOC_DETECTIVE_SKIP_AUTO_UPDATE=1` env var also skip the check. Set to `false` to pin to the installed version. Equivalent to `--no-auto-update` on the CLI.",
|
|
9951
10083
|
type: "boolean",
|
|
@@ -10163,6 +10295,13 @@ var schemas_default = {
|
|
|
10163
10295
|
],
|
|
10164
10296
|
additionalProperties: false,
|
|
10165
10297
|
title: "Source Location"
|
|
10298
|
+
},
|
|
10299
|
+
autoScreenshot: {
|
|
10300
|
+
type: "string",
|
|
10301
|
+
minLength: 1,
|
|
10302
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
10303
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
10304
|
+
readOnly: true
|
|
10166
10305
|
}
|
|
10167
10306
|
},
|
|
10168
10307
|
title: "Common"
|
|
@@ -10216,6 +10355,13 @@ var schemas_default = {
|
|
|
10216
10355
|
description: "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
10217
10356
|
default: false
|
|
10218
10357
|
},
|
|
10358
|
+
autoScreenshot: {
|
|
10359
|
+
type: "string",
|
|
10360
|
+
minLength: 1,
|
|
10361
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
10362
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
10363
|
+
readOnly: true
|
|
10364
|
+
},
|
|
10219
10365
|
location: {
|
|
10220
10366
|
type: "object",
|
|
10221
10367
|
description: "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -10333,6 +10479,13 @@ var schemas_default = {
|
|
|
10333
10479
|
],
|
|
10334
10480
|
additionalProperties: false,
|
|
10335
10481
|
title: "Source Location"
|
|
10482
|
+
},
|
|
10483
|
+
autoScreenshot: {
|
|
10484
|
+
type: "string",
|
|
10485
|
+
minLength: 1,
|
|
10486
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
10487
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
10488
|
+
readOnly: true
|
|
10336
10489
|
}
|
|
10337
10490
|
},
|
|
10338
10491
|
title: "Common"
|
|
@@ -10641,6 +10794,13 @@ var schemas_default = {
|
|
|
10641
10794
|
],
|
|
10642
10795
|
additionalProperties: false,
|
|
10643
10796
|
title: "Source Location"
|
|
10797
|
+
},
|
|
10798
|
+
autoScreenshot: {
|
|
10799
|
+
type: "string",
|
|
10800
|
+
minLength: 1,
|
|
10801
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
10802
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
10803
|
+
readOnly: true
|
|
10644
10804
|
}
|
|
10645
10805
|
},
|
|
10646
10806
|
title: "Common"
|
|
@@ -10993,6 +11153,13 @@ var schemas_default = {
|
|
|
10993
11153
|
],
|
|
10994
11154
|
additionalProperties: false,
|
|
10995
11155
|
title: "Source Location"
|
|
11156
|
+
},
|
|
11157
|
+
autoScreenshot: {
|
|
11158
|
+
type: "string",
|
|
11159
|
+
minLength: 1,
|
|
11160
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
11161
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
11162
|
+
readOnly: true
|
|
10996
11163
|
}
|
|
10997
11164
|
},
|
|
10998
11165
|
title: "Common"
|
|
@@ -12442,6 +12609,13 @@ var schemas_default = {
|
|
|
12442
12609
|
],
|
|
12443
12610
|
additionalProperties: false,
|
|
12444
12611
|
title: "Source Location"
|
|
12612
|
+
},
|
|
12613
|
+
autoScreenshot: {
|
|
12614
|
+
type: "string",
|
|
12615
|
+
minLength: 1,
|
|
12616
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
12617
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
12618
|
+
readOnly: true
|
|
12445
12619
|
}
|
|
12446
12620
|
},
|
|
12447
12621
|
title: "Common"
|
|
@@ -12984,6 +13158,13 @@ var schemas_default = {
|
|
|
12984
13158
|
],
|
|
12985
13159
|
additionalProperties: false,
|
|
12986
13160
|
title: "Source Location"
|
|
13161
|
+
},
|
|
13162
|
+
autoScreenshot: {
|
|
13163
|
+
type: "string",
|
|
13164
|
+
minLength: 1,
|
|
13165
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
13166
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
13167
|
+
readOnly: true
|
|
12987
13168
|
}
|
|
12988
13169
|
},
|
|
12989
13170
|
title: "Common"
|
|
@@ -14078,6 +14259,13 @@ var schemas_default = {
|
|
|
14078
14259
|
],
|
|
14079
14260
|
additionalProperties: false,
|
|
14080
14261
|
title: "Source Location"
|
|
14262
|
+
},
|
|
14263
|
+
autoScreenshot: {
|
|
14264
|
+
type: "string",
|
|
14265
|
+
minLength: 1,
|
|
14266
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
14267
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
14268
|
+
readOnly: true
|
|
14081
14269
|
}
|
|
14082
14270
|
},
|
|
14083
14271
|
title: "Common"
|
|
@@ -14414,6 +14602,13 @@ var schemas_default = {
|
|
|
14414
14602
|
],
|
|
14415
14603
|
additionalProperties: false,
|
|
14416
14604
|
title: "Source Location"
|
|
14605
|
+
},
|
|
14606
|
+
autoScreenshot: {
|
|
14607
|
+
type: "string",
|
|
14608
|
+
minLength: 1,
|
|
14609
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
14610
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
14611
|
+
readOnly: true
|
|
14417
14612
|
}
|
|
14418
14613
|
},
|
|
14419
14614
|
title: "Common"
|
|
@@ -14736,6 +14931,13 @@ var schemas_default = {
|
|
|
14736
14931
|
],
|
|
14737
14932
|
additionalProperties: false,
|
|
14738
14933
|
title: "Source Location"
|
|
14934
|
+
},
|
|
14935
|
+
autoScreenshot: {
|
|
14936
|
+
type: "string",
|
|
14937
|
+
minLength: 1,
|
|
14938
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
14939
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
14940
|
+
readOnly: true
|
|
14739
14941
|
}
|
|
14740
14942
|
},
|
|
14741
14943
|
title: "Common"
|
|
@@ -15080,6 +15282,13 @@ var schemas_default = {
|
|
|
15080
15282
|
],
|
|
15081
15283
|
additionalProperties: false,
|
|
15082
15284
|
title: "Source Location"
|
|
15285
|
+
},
|
|
15286
|
+
autoScreenshot: {
|
|
15287
|
+
type: "string",
|
|
15288
|
+
minLength: 1,
|
|
15289
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
15290
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
15291
|
+
readOnly: true
|
|
15083
15292
|
}
|
|
15084
15293
|
},
|
|
15085
15294
|
title: "Common"
|
|
@@ -15867,6 +16076,13 @@ var schemas_default = {
|
|
|
15867
16076
|
],
|
|
15868
16077
|
additionalProperties: false,
|
|
15869
16078
|
title: "Source Location"
|
|
16079
|
+
},
|
|
16080
|
+
autoScreenshot: {
|
|
16081
|
+
type: "string",
|
|
16082
|
+
minLength: 1,
|
|
16083
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
16084
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
16085
|
+
readOnly: true
|
|
15870
16086
|
}
|
|
15871
16087
|
},
|
|
15872
16088
|
title: "Common"
|
|
@@ -16212,6 +16428,13 @@ var schemas_default = {
|
|
|
16212
16428
|
],
|
|
16213
16429
|
additionalProperties: false,
|
|
16214
16430
|
title: "Source Location"
|
|
16431
|
+
},
|
|
16432
|
+
autoScreenshot: {
|
|
16433
|
+
type: "string",
|
|
16434
|
+
minLength: 1,
|
|
16435
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
16436
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
16437
|
+
readOnly: true
|
|
16215
16438
|
}
|
|
16216
16439
|
},
|
|
16217
16440
|
title: "Common"
|
|
@@ -16413,6 +16636,13 @@ var schemas_default = {
|
|
|
16413
16636
|
],
|
|
16414
16637
|
additionalProperties: false,
|
|
16415
16638
|
title: "Source Location"
|
|
16639
|
+
},
|
|
16640
|
+
autoScreenshot: {
|
|
16641
|
+
type: "string",
|
|
16642
|
+
minLength: 1,
|
|
16643
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
16644
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
16645
|
+
readOnly: true
|
|
16416
16646
|
}
|
|
16417
16647
|
},
|
|
16418
16648
|
title: "Common"
|
|
@@ -16525,6 +16755,13 @@ var schemas_default = {
|
|
|
16525
16755
|
],
|
|
16526
16756
|
additionalProperties: false,
|
|
16527
16757
|
title: "Source Location"
|
|
16758
|
+
},
|
|
16759
|
+
autoScreenshot: {
|
|
16760
|
+
type: "string",
|
|
16761
|
+
minLength: 1,
|
|
16762
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
16763
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
16764
|
+
readOnly: true
|
|
16528
16765
|
}
|
|
16529
16766
|
},
|
|
16530
16767
|
title: "Common"
|
|
@@ -16634,6 +16871,13 @@ var schemas_default = {
|
|
|
16634
16871
|
],
|
|
16635
16872
|
additionalProperties: false,
|
|
16636
16873
|
title: "Source Location"
|
|
16874
|
+
},
|
|
16875
|
+
autoScreenshot: {
|
|
16876
|
+
type: "string",
|
|
16877
|
+
minLength: 1,
|
|
16878
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
16879
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
16880
|
+
readOnly: true
|
|
16637
16881
|
}
|
|
16638
16882
|
},
|
|
16639
16883
|
title: "Common"
|
|
@@ -17230,6 +17474,13 @@ var schemas_default = {
|
|
|
17230
17474
|
],
|
|
17231
17475
|
additionalProperties: false,
|
|
17232
17476
|
title: "Source Location"
|
|
17477
|
+
},
|
|
17478
|
+
autoScreenshot: {
|
|
17479
|
+
type: "string",
|
|
17480
|
+
minLength: 1,
|
|
17481
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
17482
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
17483
|
+
readOnly: true
|
|
17233
17484
|
}
|
|
17234
17485
|
},
|
|
17235
17486
|
title: "Common"
|
|
@@ -17558,6 +17809,13 @@ var schemas_default = {
|
|
|
17558
17809
|
],
|
|
17559
17810
|
additionalProperties: false,
|
|
17560
17811
|
title: "Source Location"
|
|
17812
|
+
},
|
|
17813
|
+
autoScreenshot: {
|
|
17814
|
+
type: "string",
|
|
17815
|
+
minLength: 1,
|
|
17816
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
17817
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
17818
|
+
readOnly: true
|
|
17561
17819
|
}
|
|
17562
17820
|
},
|
|
17563
17821
|
title: "Common"
|
|
@@ -18282,6 +18540,10 @@ var schemas_default = {
|
|
|
18282
18540
|
specFilter: [
|
|
18283
18541
|
"auth"
|
|
18284
18542
|
]
|
|
18543
|
+
},
|
|
18544
|
+
{
|
|
18545
|
+
autoScreenshot: true,
|
|
18546
|
+
output: "./test-results"
|
|
18285
18547
|
}
|
|
18286
18548
|
]
|
|
18287
18549
|
},
|
|
@@ -22505,7 +22767,7 @@ var schemas_default = {
|
|
|
22505
22767
|
default: "."
|
|
22506
22768
|
},
|
|
22507
22769
|
reporters: {
|
|
22508
|
-
description: "Reporters to use when emitting test results. Built-in reporters: `terminal`, `json`, `html`. Custom reporters registered via `registerReporter()` can also be referenced by name.",
|
|
22770
|
+
description: "Reporters to use when emitting test results. Built-in reporters: `terminal`, `json`, `html`, `runFolder`. The `runFolder` reporter (enabled by default) archives each run's results as `<output>/.doc-detective/run-<runId>/testResults.json`, beside any screenshots the run captured, in addition to the flat output the `json` reporter writes. Custom reporters registered via `registerReporter()` can also be referenced by name.",
|
|
22509
22771
|
type: "array",
|
|
22510
22772
|
items: {
|
|
22511
22773
|
type: "string",
|
|
@@ -22513,7 +22775,8 @@ var schemas_default = {
|
|
|
22513
22775
|
},
|
|
22514
22776
|
default: [
|
|
22515
22777
|
"terminal",
|
|
22516
|
-
"json"
|
|
22778
|
+
"json",
|
|
22779
|
+
"runFolder"
|
|
22517
22780
|
]
|
|
22518
22781
|
},
|
|
22519
22782
|
specFilter: {
|
|
@@ -23366,6 +23629,13 @@ var schemas_default = {
|
|
|
23366
23629
|
],
|
|
23367
23630
|
additionalProperties: false,
|
|
23368
23631
|
title: "Source Location"
|
|
23632
|
+
},
|
|
23633
|
+
autoScreenshot: {
|
|
23634
|
+
type: "string",
|
|
23635
|
+
minLength: 1,
|
|
23636
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
23637
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
23638
|
+
readOnly: true
|
|
23369
23639
|
}
|
|
23370
23640
|
},
|
|
23371
23641
|
title: "Common"
|
|
@@ -23419,6 +23689,13 @@ var schemas_default = {
|
|
|
23419
23689
|
description: "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
23420
23690
|
default: false
|
|
23421
23691
|
},
|
|
23692
|
+
autoScreenshot: {
|
|
23693
|
+
type: "string",
|
|
23694
|
+
minLength: 1,
|
|
23695
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
23696
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
23697
|
+
readOnly: true
|
|
23698
|
+
},
|
|
23422
23699
|
location: {
|
|
23423
23700
|
type: "object",
|
|
23424
23701
|
description: "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -23536,6 +23813,13 @@ var schemas_default = {
|
|
|
23536
23813
|
],
|
|
23537
23814
|
additionalProperties: false,
|
|
23538
23815
|
title: "Source Location"
|
|
23816
|
+
},
|
|
23817
|
+
autoScreenshot: {
|
|
23818
|
+
type: "string",
|
|
23819
|
+
minLength: 1,
|
|
23820
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
23821
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
23822
|
+
readOnly: true
|
|
23539
23823
|
}
|
|
23540
23824
|
},
|
|
23541
23825
|
title: "Common"
|
|
@@ -23844,6 +24128,13 @@ var schemas_default = {
|
|
|
23844
24128
|
],
|
|
23845
24129
|
additionalProperties: false,
|
|
23846
24130
|
title: "Source Location"
|
|
24131
|
+
},
|
|
24132
|
+
autoScreenshot: {
|
|
24133
|
+
type: "string",
|
|
24134
|
+
minLength: 1,
|
|
24135
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
24136
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
24137
|
+
readOnly: true
|
|
23847
24138
|
}
|
|
23848
24139
|
},
|
|
23849
24140
|
title: "Common"
|
|
@@ -24196,6 +24487,13 @@ var schemas_default = {
|
|
|
24196
24487
|
],
|
|
24197
24488
|
additionalProperties: false,
|
|
24198
24489
|
title: "Source Location"
|
|
24490
|
+
},
|
|
24491
|
+
autoScreenshot: {
|
|
24492
|
+
type: "string",
|
|
24493
|
+
minLength: 1,
|
|
24494
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
24495
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
24496
|
+
readOnly: true
|
|
24199
24497
|
}
|
|
24200
24498
|
},
|
|
24201
24499
|
title: "Common"
|
|
@@ -25645,6 +25943,13 @@ var schemas_default = {
|
|
|
25645
25943
|
],
|
|
25646
25944
|
additionalProperties: false,
|
|
25647
25945
|
title: "Source Location"
|
|
25946
|
+
},
|
|
25947
|
+
autoScreenshot: {
|
|
25948
|
+
type: "string",
|
|
25949
|
+
minLength: 1,
|
|
25950
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
25951
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
25952
|
+
readOnly: true
|
|
25648
25953
|
}
|
|
25649
25954
|
},
|
|
25650
25955
|
title: "Common"
|
|
@@ -26187,6 +26492,13 @@ var schemas_default = {
|
|
|
26187
26492
|
],
|
|
26188
26493
|
additionalProperties: false,
|
|
26189
26494
|
title: "Source Location"
|
|
26495
|
+
},
|
|
26496
|
+
autoScreenshot: {
|
|
26497
|
+
type: "string",
|
|
26498
|
+
minLength: 1,
|
|
26499
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
26500
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
26501
|
+
readOnly: true
|
|
26190
26502
|
}
|
|
26191
26503
|
},
|
|
26192
26504
|
title: "Common"
|
|
@@ -27281,6 +27593,13 @@ var schemas_default = {
|
|
|
27281
27593
|
],
|
|
27282
27594
|
additionalProperties: false,
|
|
27283
27595
|
title: "Source Location"
|
|
27596
|
+
},
|
|
27597
|
+
autoScreenshot: {
|
|
27598
|
+
type: "string",
|
|
27599
|
+
minLength: 1,
|
|
27600
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
27601
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
27602
|
+
readOnly: true
|
|
27284
27603
|
}
|
|
27285
27604
|
},
|
|
27286
27605
|
title: "Common"
|
|
@@ -27617,6 +27936,13 @@ var schemas_default = {
|
|
|
27617
27936
|
],
|
|
27618
27937
|
additionalProperties: false,
|
|
27619
27938
|
title: "Source Location"
|
|
27939
|
+
},
|
|
27940
|
+
autoScreenshot: {
|
|
27941
|
+
type: "string",
|
|
27942
|
+
minLength: 1,
|
|
27943
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
27944
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
27945
|
+
readOnly: true
|
|
27620
27946
|
}
|
|
27621
27947
|
},
|
|
27622
27948
|
title: "Common"
|
|
@@ -27939,6 +28265,13 @@ var schemas_default = {
|
|
|
27939
28265
|
],
|
|
27940
28266
|
additionalProperties: false,
|
|
27941
28267
|
title: "Source Location"
|
|
28268
|
+
},
|
|
28269
|
+
autoScreenshot: {
|
|
28270
|
+
type: "string",
|
|
28271
|
+
minLength: 1,
|
|
28272
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
28273
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
28274
|
+
readOnly: true
|
|
27942
28275
|
}
|
|
27943
28276
|
},
|
|
27944
28277
|
title: "Common"
|
|
@@ -28283,6 +28616,13 @@ var schemas_default = {
|
|
|
28283
28616
|
],
|
|
28284
28617
|
additionalProperties: false,
|
|
28285
28618
|
title: "Source Location"
|
|
28619
|
+
},
|
|
28620
|
+
autoScreenshot: {
|
|
28621
|
+
type: "string",
|
|
28622
|
+
minLength: 1,
|
|
28623
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
28624
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
28625
|
+
readOnly: true
|
|
28286
28626
|
}
|
|
28287
28627
|
},
|
|
28288
28628
|
title: "Common"
|
|
@@ -29070,6 +29410,13 @@ var schemas_default = {
|
|
|
29070
29410
|
],
|
|
29071
29411
|
additionalProperties: false,
|
|
29072
29412
|
title: "Source Location"
|
|
29413
|
+
},
|
|
29414
|
+
autoScreenshot: {
|
|
29415
|
+
type: "string",
|
|
29416
|
+
minLength: 1,
|
|
29417
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
29418
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
29419
|
+
readOnly: true
|
|
29073
29420
|
}
|
|
29074
29421
|
},
|
|
29075
29422
|
title: "Common"
|
|
@@ -29415,6 +29762,13 @@ var schemas_default = {
|
|
|
29415
29762
|
],
|
|
29416
29763
|
additionalProperties: false,
|
|
29417
29764
|
title: "Source Location"
|
|
29765
|
+
},
|
|
29766
|
+
autoScreenshot: {
|
|
29767
|
+
type: "string",
|
|
29768
|
+
minLength: 1,
|
|
29769
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
29770
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
29771
|
+
readOnly: true
|
|
29418
29772
|
}
|
|
29419
29773
|
},
|
|
29420
29774
|
title: "Common"
|
|
@@ -29616,6 +29970,13 @@ var schemas_default = {
|
|
|
29616
29970
|
],
|
|
29617
29971
|
additionalProperties: false,
|
|
29618
29972
|
title: "Source Location"
|
|
29973
|
+
},
|
|
29974
|
+
autoScreenshot: {
|
|
29975
|
+
type: "string",
|
|
29976
|
+
minLength: 1,
|
|
29977
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
29978
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
29979
|
+
readOnly: true
|
|
29619
29980
|
}
|
|
29620
29981
|
},
|
|
29621
29982
|
title: "Common"
|
|
@@ -29728,6 +30089,13 @@ var schemas_default = {
|
|
|
29728
30089
|
],
|
|
29729
30090
|
additionalProperties: false,
|
|
29730
30091
|
title: "Source Location"
|
|
30092
|
+
},
|
|
30093
|
+
autoScreenshot: {
|
|
30094
|
+
type: "string",
|
|
30095
|
+
minLength: 1,
|
|
30096
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
30097
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
30098
|
+
readOnly: true
|
|
29731
30099
|
}
|
|
29732
30100
|
},
|
|
29733
30101
|
title: "Common"
|
|
@@ -29837,6 +30205,13 @@ var schemas_default = {
|
|
|
29837
30205
|
],
|
|
29838
30206
|
additionalProperties: false,
|
|
29839
30207
|
title: "Source Location"
|
|
30208
|
+
},
|
|
30209
|
+
autoScreenshot: {
|
|
30210
|
+
type: "string",
|
|
30211
|
+
minLength: 1,
|
|
30212
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
30213
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
30214
|
+
readOnly: true
|
|
29840
30215
|
}
|
|
29841
30216
|
},
|
|
29842
30217
|
title: "Common"
|
|
@@ -30433,6 +30808,13 @@ var schemas_default = {
|
|
|
30433
30808
|
],
|
|
30434
30809
|
additionalProperties: false,
|
|
30435
30810
|
title: "Source Location"
|
|
30811
|
+
},
|
|
30812
|
+
autoScreenshot: {
|
|
30813
|
+
type: "string",
|
|
30814
|
+
minLength: 1,
|
|
30815
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
30816
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
30817
|
+
readOnly: true
|
|
30436
30818
|
}
|
|
30437
30819
|
},
|
|
30438
30820
|
title: "Common"
|
|
@@ -30761,6 +31143,13 @@ var schemas_default = {
|
|
|
30761
31143
|
],
|
|
30762
31144
|
additionalProperties: false,
|
|
30763
31145
|
title: "Source Location"
|
|
31146
|
+
},
|
|
31147
|
+
autoScreenshot: {
|
|
31148
|
+
type: "string",
|
|
31149
|
+
minLength: 1,
|
|
31150
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
31151
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
31152
|
+
readOnly: true
|
|
30764
31153
|
}
|
|
30765
31154
|
},
|
|
30766
31155
|
title: "Common"
|
|
@@ -31899,6 +32288,11 @@ var schemas_default = {
|
|
|
31899
32288
|
type: "boolean",
|
|
31900
32289
|
default: false
|
|
31901
32290
|
},
|
|
32291
|
+
autoScreenshot: {
|
|
32292
|
+
description: "If `true`, captures a screenshot after every step that runs in a browser, in addition to any explicit `screenshot` steps. Images are saved in the per-run artifact directory (`<output>/.doc-detective/run-<runId>/`) at paths derived from spec, test, and context IDs plus the step's order, action, and ID (for example, `screenshots/<specId>/<testId>/<contextId>/01-goTo-s4f2a91c.png`), so the same step lands on the same relative path in every run's folder for run-over-run comparison. Specs and tests can override this value with their own `autoScreenshot` fields (test level wins over spec level, which wins over config level). Equivalent to `--auto-screenshot` on the CLI.",
|
|
32293
|
+
type: "boolean",
|
|
32294
|
+
default: false
|
|
32295
|
+
},
|
|
31902
32296
|
autoUpdate: {
|
|
31903
32297
|
description: "If `true` (default), the CLI checks for a newer published `doc-detective` on startup and self-updates before running tests. Updates happen for global (`npm i -g`) and `npx` installs only \u2014 local installs (where `doc-detective` is a project dep) get an informational message instead, since auto-updating would mutate the user's lockfile. CI environments and the `DOC_DETECTIVE_SKIP_AUTO_UPDATE=1` env var also skip the check. Set to `false` to pin to the installed version. Equivalent to `--no-auto-update` on the CLI.",
|
|
31904
32298
|
type: "boolean",
|
|
@@ -32116,6 +32510,13 @@ var schemas_default = {
|
|
|
32116
32510
|
],
|
|
32117
32511
|
additionalProperties: false,
|
|
32118
32512
|
title: "Source Location"
|
|
32513
|
+
},
|
|
32514
|
+
autoScreenshot: {
|
|
32515
|
+
type: "string",
|
|
32516
|
+
minLength: 1,
|
|
32517
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
32518
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
32519
|
+
readOnly: true
|
|
32119
32520
|
}
|
|
32120
32521
|
},
|
|
32121
32522
|
title: "Common"
|
|
@@ -32169,6 +32570,13 @@ var schemas_default = {
|
|
|
32169
32570
|
description: "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
32170
32571
|
default: false
|
|
32171
32572
|
},
|
|
32573
|
+
autoScreenshot: {
|
|
32574
|
+
type: "string",
|
|
32575
|
+
minLength: 1,
|
|
32576
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
32577
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
32578
|
+
readOnly: true
|
|
32579
|
+
},
|
|
32172
32580
|
location: {
|
|
32173
32581
|
type: "object",
|
|
32174
32582
|
description: "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -32286,6 +32694,13 @@ var schemas_default = {
|
|
|
32286
32694
|
],
|
|
32287
32695
|
additionalProperties: false,
|
|
32288
32696
|
title: "Source Location"
|
|
32697
|
+
},
|
|
32698
|
+
autoScreenshot: {
|
|
32699
|
+
type: "string",
|
|
32700
|
+
minLength: 1,
|
|
32701
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
32702
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
32703
|
+
readOnly: true
|
|
32289
32704
|
}
|
|
32290
32705
|
},
|
|
32291
32706
|
title: "Common"
|
|
@@ -32594,6 +33009,13 @@ var schemas_default = {
|
|
|
32594
33009
|
],
|
|
32595
33010
|
additionalProperties: false,
|
|
32596
33011
|
title: "Source Location"
|
|
33012
|
+
},
|
|
33013
|
+
autoScreenshot: {
|
|
33014
|
+
type: "string",
|
|
33015
|
+
minLength: 1,
|
|
33016
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
33017
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
33018
|
+
readOnly: true
|
|
32597
33019
|
}
|
|
32598
33020
|
},
|
|
32599
33021
|
title: "Common"
|
|
@@ -32946,6 +33368,13 @@ var schemas_default = {
|
|
|
32946
33368
|
],
|
|
32947
33369
|
additionalProperties: false,
|
|
32948
33370
|
title: "Source Location"
|
|
33371
|
+
},
|
|
33372
|
+
autoScreenshot: {
|
|
33373
|
+
type: "string",
|
|
33374
|
+
minLength: 1,
|
|
33375
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
33376
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
33377
|
+
readOnly: true
|
|
32949
33378
|
}
|
|
32950
33379
|
},
|
|
32951
33380
|
title: "Common"
|
|
@@ -34395,6 +34824,13 @@ var schemas_default = {
|
|
|
34395
34824
|
],
|
|
34396
34825
|
additionalProperties: false,
|
|
34397
34826
|
title: "Source Location"
|
|
34827
|
+
},
|
|
34828
|
+
autoScreenshot: {
|
|
34829
|
+
type: "string",
|
|
34830
|
+
minLength: 1,
|
|
34831
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
34832
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
34833
|
+
readOnly: true
|
|
34398
34834
|
}
|
|
34399
34835
|
},
|
|
34400
34836
|
title: "Common"
|
|
@@ -34937,6 +35373,13 @@ var schemas_default = {
|
|
|
34937
35373
|
],
|
|
34938
35374
|
additionalProperties: false,
|
|
34939
35375
|
title: "Source Location"
|
|
35376
|
+
},
|
|
35377
|
+
autoScreenshot: {
|
|
35378
|
+
type: "string",
|
|
35379
|
+
minLength: 1,
|
|
35380
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
35381
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
35382
|
+
readOnly: true
|
|
34940
35383
|
}
|
|
34941
35384
|
},
|
|
34942
35385
|
title: "Common"
|
|
@@ -36031,6 +36474,13 @@ var schemas_default = {
|
|
|
36031
36474
|
],
|
|
36032
36475
|
additionalProperties: false,
|
|
36033
36476
|
title: "Source Location"
|
|
36477
|
+
},
|
|
36478
|
+
autoScreenshot: {
|
|
36479
|
+
type: "string",
|
|
36480
|
+
minLength: 1,
|
|
36481
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
36482
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
36483
|
+
readOnly: true
|
|
36034
36484
|
}
|
|
36035
36485
|
},
|
|
36036
36486
|
title: "Common"
|
|
@@ -36367,6 +36817,13 @@ var schemas_default = {
|
|
|
36367
36817
|
],
|
|
36368
36818
|
additionalProperties: false,
|
|
36369
36819
|
title: "Source Location"
|
|
36820
|
+
},
|
|
36821
|
+
autoScreenshot: {
|
|
36822
|
+
type: "string",
|
|
36823
|
+
minLength: 1,
|
|
36824
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
36825
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
36826
|
+
readOnly: true
|
|
36370
36827
|
}
|
|
36371
36828
|
},
|
|
36372
36829
|
title: "Common"
|
|
@@ -36689,6 +37146,13 @@ var schemas_default = {
|
|
|
36689
37146
|
],
|
|
36690
37147
|
additionalProperties: false,
|
|
36691
37148
|
title: "Source Location"
|
|
37149
|
+
},
|
|
37150
|
+
autoScreenshot: {
|
|
37151
|
+
type: "string",
|
|
37152
|
+
minLength: 1,
|
|
37153
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
37154
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
37155
|
+
readOnly: true
|
|
36692
37156
|
}
|
|
36693
37157
|
},
|
|
36694
37158
|
title: "Common"
|
|
@@ -37033,6 +37497,13 @@ var schemas_default = {
|
|
|
37033
37497
|
],
|
|
37034
37498
|
additionalProperties: false,
|
|
37035
37499
|
title: "Source Location"
|
|
37500
|
+
},
|
|
37501
|
+
autoScreenshot: {
|
|
37502
|
+
type: "string",
|
|
37503
|
+
minLength: 1,
|
|
37504
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
37505
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
37506
|
+
readOnly: true
|
|
37036
37507
|
}
|
|
37037
37508
|
},
|
|
37038
37509
|
title: "Common"
|
|
@@ -37820,6 +38291,13 @@ var schemas_default = {
|
|
|
37820
38291
|
],
|
|
37821
38292
|
additionalProperties: false,
|
|
37822
38293
|
title: "Source Location"
|
|
38294
|
+
},
|
|
38295
|
+
autoScreenshot: {
|
|
38296
|
+
type: "string",
|
|
38297
|
+
minLength: 1,
|
|
38298
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
38299
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
38300
|
+
readOnly: true
|
|
37823
38301
|
}
|
|
37824
38302
|
},
|
|
37825
38303
|
title: "Common"
|
|
@@ -38165,6 +38643,13 @@ var schemas_default = {
|
|
|
38165
38643
|
],
|
|
38166
38644
|
additionalProperties: false,
|
|
38167
38645
|
title: "Source Location"
|
|
38646
|
+
},
|
|
38647
|
+
autoScreenshot: {
|
|
38648
|
+
type: "string",
|
|
38649
|
+
minLength: 1,
|
|
38650
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
38651
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
38652
|
+
readOnly: true
|
|
38168
38653
|
}
|
|
38169
38654
|
},
|
|
38170
38655
|
title: "Common"
|
|
@@ -38366,6 +38851,13 @@ var schemas_default = {
|
|
|
38366
38851
|
],
|
|
38367
38852
|
additionalProperties: false,
|
|
38368
38853
|
title: "Source Location"
|
|
38854
|
+
},
|
|
38855
|
+
autoScreenshot: {
|
|
38856
|
+
type: "string",
|
|
38857
|
+
minLength: 1,
|
|
38858
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
38859
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
38860
|
+
readOnly: true
|
|
38369
38861
|
}
|
|
38370
38862
|
},
|
|
38371
38863
|
title: "Common"
|
|
@@ -38478,6 +38970,13 @@ var schemas_default = {
|
|
|
38478
38970
|
],
|
|
38479
38971
|
additionalProperties: false,
|
|
38480
38972
|
title: "Source Location"
|
|
38973
|
+
},
|
|
38974
|
+
autoScreenshot: {
|
|
38975
|
+
type: "string",
|
|
38976
|
+
minLength: 1,
|
|
38977
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
38978
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
38979
|
+
readOnly: true
|
|
38481
38980
|
}
|
|
38482
38981
|
},
|
|
38483
38982
|
title: "Common"
|
|
@@ -38587,6 +39086,13 @@ var schemas_default = {
|
|
|
38587
39086
|
],
|
|
38588
39087
|
additionalProperties: false,
|
|
38589
39088
|
title: "Source Location"
|
|
39089
|
+
},
|
|
39090
|
+
autoScreenshot: {
|
|
39091
|
+
type: "string",
|
|
39092
|
+
minLength: 1,
|
|
39093
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
39094
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
39095
|
+
readOnly: true
|
|
38590
39096
|
}
|
|
38591
39097
|
},
|
|
38592
39098
|
title: "Common"
|
|
@@ -39183,6 +39689,13 @@ var schemas_default = {
|
|
|
39183
39689
|
],
|
|
39184
39690
|
additionalProperties: false,
|
|
39185
39691
|
title: "Source Location"
|
|
39692
|
+
},
|
|
39693
|
+
autoScreenshot: {
|
|
39694
|
+
type: "string",
|
|
39695
|
+
minLength: 1,
|
|
39696
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
39697
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
39698
|
+
readOnly: true
|
|
39186
39699
|
}
|
|
39187
39700
|
},
|
|
39188
39701
|
title: "Common"
|
|
@@ -39511,6 +40024,13 @@ var schemas_default = {
|
|
|
39511
40024
|
],
|
|
39512
40025
|
additionalProperties: false,
|
|
39513
40026
|
title: "Source Location"
|
|
40027
|
+
},
|
|
40028
|
+
autoScreenshot: {
|
|
40029
|
+
type: "string",
|
|
40030
|
+
minLength: 1,
|
|
40031
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
40032
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
40033
|
+
readOnly: true
|
|
39514
40034
|
}
|
|
39515
40035
|
},
|
|
39516
40036
|
title: "Common"
|
|
@@ -40235,6 +40755,10 @@ var schemas_default = {
|
|
|
40235
40755
|
specFilter: [
|
|
40236
40756
|
"auth"
|
|
40237
40757
|
]
|
|
40758
|
+
},
|
|
40759
|
+
{
|
|
40760
|
+
autoScreenshot: true,
|
|
40761
|
+
output: "./test-results"
|
|
40238
40762
|
}
|
|
40239
40763
|
]
|
|
40240
40764
|
},
|
|
@@ -40839,6 +41363,10 @@ var schemas_default = {
|
|
|
40839
41363
|
]
|
|
40840
41364
|
}
|
|
40841
41365
|
},
|
|
41366
|
+
autoScreenshot: {
|
|
41367
|
+
type: "boolean",
|
|
41368
|
+
description: "If `true`, captures a screenshot after every step in this spec's tests that runs in a browser. Overrides the config-level `autoScreenshot`; individual tests can override this value with their own `autoScreenshot`. When unset, defers to the config level."
|
|
41369
|
+
},
|
|
40842
41370
|
tests: {
|
|
40843
41371
|
description: "[Tests](test) to perform.",
|
|
40844
41372
|
type: "array",
|
|
@@ -40868,6 +41396,10 @@ var schemas_default = {
|
|
|
40868
41396
|
description: "Whether or not to detect steps in input files based on markup regex.",
|
|
40869
41397
|
default: true
|
|
40870
41398
|
},
|
|
41399
|
+
autoScreenshot: {
|
|
41400
|
+
type: "boolean",
|
|
41401
|
+
description: "If `true`, captures a screenshot after every step in this test that runs in a browser. Overrides `autoScreenshot` set at the spec or config level. When unset, defers to the spec level, then the config level."
|
|
41402
|
+
},
|
|
40871
41403
|
runOn: {
|
|
40872
41404
|
type: "array",
|
|
40873
41405
|
description: "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
|
|
@@ -41534,6 +42066,13 @@ var schemas_default = {
|
|
|
41534
42066
|
],
|
|
41535
42067
|
additionalProperties: false,
|
|
41536
42068
|
title: "Source Location"
|
|
42069
|
+
},
|
|
42070
|
+
autoScreenshot: {
|
|
42071
|
+
type: "string",
|
|
42072
|
+
minLength: 1,
|
|
42073
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
42074
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
42075
|
+
readOnly: true
|
|
41537
42076
|
}
|
|
41538
42077
|
},
|
|
41539
42078
|
title: "Common"
|
|
@@ -41587,6 +42126,13 @@ var schemas_default = {
|
|
|
41587
42126
|
description: "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
41588
42127
|
default: false
|
|
41589
42128
|
},
|
|
42129
|
+
autoScreenshot: {
|
|
42130
|
+
type: "string",
|
|
42131
|
+
minLength: 1,
|
|
42132
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
42133
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
42134
|
+
readOnly: true
|
|
42135
|
+
},
|
|
41590
42136
|
location: {
|
|
41591
42137
|
type: "object",
|
|
41592
42138
|
description: "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -41704,6 +42250,13 @@ var schemas_default = {
|
|
|
41704
42250
|
],
|
|
41705
42251
|
additionalProperties: false,
|
|
41706
42252
|
title: "Source Location"
|
|
42253
|
+
},
|
|
42254
|
+
autoScreenshot: {
|
|
42255
|
+
type: "string",
|
|
42256
|
+
minLength: 1,
|
|
42257
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
42258
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
42259
|
+
readOnly: true
|
|
41707
42260
|
}
|
|
41708
42261
|
},
|
|
41709
42262
|
title: "Common"
|
|
@@ -42012,6 +42565,13 @@ var schemas_default = {
|
|
|
42012
42565
|
],
|
|
42013
42566
|
additionalProperties: false,
|
|
42014
42567
|
title: "Source Location"
|
|
42568
|
+
},
|
|
42569
|
+
autoScreenshot: {
|
|
42570
|
+
type: "string",
|
|
42571
|
+
minLength: 1,
|
|
42572
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
42573
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
42574
|
+
readOnly: true
|
|
42015
42575
|
}
|
|
42016
42576
|
},
|
|
42017
42577
|
title: "Common"
|
|
@@ -42364,6 +42924,13 @@ var schemas_default = {
|
|
|
42364
42924
|
],
|
|
42365
42925
|
additionalProperties: false,
|
|
42366
42926
|
title: "Source Location"
|
|
42927
|
+
},
|
|
42928
|
+
autoScreenshot: {
|
|
42929
|
+
type: "string",
|
|
42930
|
+
minLength: 1,
|
|
42931
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
42932
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
42933
|
+
readOnly: true
|
|
42367
42934
|
}
|
|
42368
42935
|
},
|
|
42369
42936
|
title: "Common"
|
|
@@ -43813,6 +44380,13 @@ var schemas_default = {
|
|
|
43813
44380
|
],
|
|
43814
44381
|
additionalProperties: false,
|
|
43815
44382
|
title: "Source Location"
|
|
44383
|
+
},
|
|
44384
|
+
autoScreenshot: {
|
|
44385
|
+
type: "string",
|
|
44386
|
+
minLength: 1,
|
|
44387
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
44388
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
44389
|
+
readOnly: true
|
|
43816
44390
|
}
|
|
43817
44391
|
},
|
|
43818
44392
|
title: "Common"
|
|
@@ -44355,6 +44929,13 @@ var schemas_default = {
|
|
|
44355
44929
|
],
|
|
44356
44930
|
additionalProperties: false,
|
|
44357
44931
|
title: "Source Location"
|
|
44932
|
+
},
|
|
44933
|
+
autoScreenshot: {
|
|
44934
|
+
type: "string",
|
|
44935
|
+
minLength: 1,
|
|
44936
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
44937
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
44938
|
+
readOnly: true
|
|
44358
44939
|
}
|
|
44359
44940
|
},
|
|
44360
44941
|
title: "Common"
|
|
@@ -45449,6 +46030,13 @@ var schemas_default = {
|
|
|
45449
46030
|
],
|
|
45450
46031
|
additionalProperties: false,
|
|
45451
46032
|
title: "Source Location"
|
|
46033
|
+
},
|
|
46034
|
+
autoScreenshot: {
|
|
46035
|
+
type: "string",
|
|
46036
|
+
minLength: 1,
|
|
46037
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
46038
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
46039
|
+
readOnly: true
|
|
45452
46040
|
}
|
|
45453
46041
|
},
|
|
45454
46042
|
title: "Common"
|
|
@@ -45785,6 +46373,13 @@ var schemas_default = {
|
|
|
45785
46373
|
],
|
|
45786
46374
|
additionalProperties: false,
|
|
45787
46375
|
title: "Source Location"
|
|
46376
|
+
},
|
|
46377
|
+
autoScreenshot: {
|
|
46378
|
+
type: "string",
|
|
46379
|
+
minLength: 1,
|
|
46380
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
46381
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
46382
|
+
readOnly: true
|
|
45788
46383
|
}
|
|
45789
46384
|
},
|
|
45790
46385
|
title: "Common"
|
|
@@ -46107,6 +46702,13 @@ var schemas_default = {
|
|
|
46107
46702
|
],
|
|
46108
46703
|
additionalProperties: false,
|
|
46109
46704
|
title: "Source Location"
|
|
46705
|
+
},
|
|
46706
|
+
autoScreenshot: {
|
|
46707
|
+
type: "string",
|
|
46708
|
+
minLength: 1,
|
|
46709
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
46710
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
46711
|
+
readOnly: true
|
|
46110
46712
|
}
|
|
46111
46713
|
},
|
|
46112
46714
|
title: "Common"
|
|
@@ -46451,6 +47053,13 @@ var schemas_default = {
|
|
|
46451
47053
|
],
|
|
46452
47054
|
additionalProperties: false,
|
|
46453
47055
|
title: "Source Location"
|
|
47056
|
+
},
|
|
47057
|
+
autoScreenshot: {
|
|
47058
|
+
type: "string",
|
|
47059
|
+
minLength: 1,
|
|
47060
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
47061
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
47062
|
+
readOnly: true
|
|
46454
47063
|
}
|
|
46455
47064
|
},
|
|
46456
47065
|
title: "Common"
|
|
@@ -47238,6 +47847,13 @@ var schemas_default = {
|
|
|
47238
47847
|
],
|
|
47239
47848
|
additionalProperties: false,
|
|
47240
47849
|
title: "Source Location"
|
|
47850
|
+
},
|
|
47851
|
+
autoScreenshot: {
|
|
47852
|
+
type: "string",
|
|
47853
|
+
minLength: 1,
|
|
47854
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
47855
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
47856
|
+
readOnly: true
|
|
47241
47857
|
}
|
|
47242
47858
|
},
|
|
47243
47859
|
title: "Common"
|
|
@@ -47583,6 +48199,13 @@ var schemas_default = {
|
|
|
47583
48199
|
],
|
|
47584
48200
|
additionalProperties: false,
|
|
47585
48201
|
title: "Source Location"
|
|
48202
|
+
},
|
|
48203
|
+
autoScreenshot: {
|
|
48204
|
+
type: "string",
|
|
48205
|
+
minLength: 1,
|
|
48206
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
48207
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
48208
|
+
readOnly: true
|
|
47586
48209
|
}
|
|
47587
48210
|
},
|
|
47588
48211
|
title: "Common"
|
|
@@ -47784,6 +48407,13 @@ var schemas_default = {
|
|
|
47784
48407
|
],
|
|
47785
48408
|
additionalProperties: false,
|
|
47786
48409
|
title: "Source Location"
|
|
48410
|
+
},
|
|
48411
|
+
autoScreenshot: {
|
|
48412
|
+
type: "string",
|
|
48413
|
+
minLength: 1,
|
|
48414
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
48415
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
48416
|
+
readOnly: true
|
|
47787
48417
|
}
|
|
47788
48418
|
},
|
|
47789
48419
|
title: "Common"
|
|
@@ -47896,6 +48526,13 @@ var schemas_default = {
|
|
|
47896
48526
|
],
|
|
47897
48527
|
additionalProperties: false,
|
|
47898
48528
|
title: "Source Location"
|
|
48529
|
+
},
|
|
48530
|
+
autoScreenshot: {
|
|
48531
|
+
type: "string",
|
|
48532
|
+
minLength: 1,
|
|
48533
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
48534
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
48535
|
+
readOnly: true
|
|
47899
48536
|
}
|
|
47900
48537
|
},
|
|
47901
48538
|
title: "Common"
|
|
@@ -48005,6 +48642,13 @@ var schemas_default = {
|
|
|
48005
48642
|
],
|
|
48006
48643
|
additionalProperties: false,
|
|
48007
48644
|
title: "Source Location"
|
|
48645
|
+
},
|
|
48646
|
+
autoScreenshot: {
|
|
48647
|
+
type: "string",
|
|
48648
|
+
minLength: 1,
|
|
48649
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
48650
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
48651
|
+
readOnly: true
|
|
48008
48652
|
}
|
|
48009
48653
|
},
|
|
48010
48654
|
title: "Common"
|
|
@@ -48601,6 +49245,13 @@ var schemas_default = {
|
|
|
48601
49245
|
],
|
|
48602
49246
|
additionalProperties: false,
|
|
48603
49247
|
title: "Source Location"
|
|
49248
|
+
},
|
|
49249
|
+
autoScreenshot: {
|
|
49250
|
+
type: "string",
|
|
49251
|
+
minLength: 1,
|
|
49252
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
49253
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
49254
|
+
readOnly: true
|
|
48604
49255
|
}
|
|
48605
49256
|
},
|
|
48606
49257
|
title: "Common"
|
|
@@ -48929,6 +49580,13 @@ var schemas_default = {
|
|
|
48929
49580
|
],
|
|
48930
49581
|
additionalProperties: false,
|
|
48931
49582
|
title: "Source Location"
|
|
49583
|
+
},
|
|
49584
|
+
autoScreenshot: {
|
|
49585
|
+
type: "string",
|
|
49586
|
+
minLength: 1,
|
|
49587
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
49588
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
49589
|
+
readOnly: true
|
|
48932
49590
|
}
|
|
48933
49591
|
},
|
|
48934
49592
|
title: "Common"
|
|
@@ -49723,6 +50381,13 @@ var schemas_default = {
|
|
|
49723
50381
|
],
|
|
49724
50382
|
additionalProperties: false,
|
|
49725
50383
|
title: "Source Location"
|
|
50384
|
+
},
|
|
50385
|
+
autoScreenshot: {
|
|
50386
|
+
type: "string",
|
|
50387
|
+
minLength: 1,
|
|
50388
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
50389
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
50390
|
+
readOnly: true
|
|
49726
50391
|
}
|
|
49727
50392
|
},
|
|
49728
50393
|
title: "Common"
|
|
@@ -49776,6 +50441,13 @@ var schemas_default = {
|
|
|
49776
50441
|
description: "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
49777
50442
|
default: false
|
|
49778
50443
|
},
|
|
50444
|
+
autoScreenshot: {
|
|
50445
|
+
type: "string",
|
|
50446
|
+
minLength: 1,
|
|
50447
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
50448
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
50449
|
+
readOnly: true
|
|
50450
|
+
},
|
|
49779
50451
|
location: {
|
|
49780
50452
|
type: "object",
|
|
49781
50453
|
description: "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -49893,6 +50565,13 @@ var schemas_default = {
|
|
|
49893
50565
|
],
|
|
49894
50566
|
additionalProperties: false,
|
|
49895
50567
|
title: "Source Location"
|
|
50568
|
+
},
|
|
50569
|
+
autoScreenshot: {
|
|
50570
|
+
type: "string",
|
|
50571
|
+
minLength: 1,
|
|
50572
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
50573
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
50574
|
+
readOnly: true
|
|
49896
50575
|
}
|
|
49897
50576
|
},
|
|
49898
50577
|
title: "Common"
|
|
@@ -50201,6 +50880,13 @@ var schemas_default = {
|
|
|
50201
50880
|
],
|
|
50202
50881
|
additionalProperties: false,
|
|
50203
50882
|
title: "Source Location"
|
|
50883
|
+
},
|
|
50884
|
+
autoScreenshot: {
|
|
50885
|
+
type: "string",
|
|
50886
|
+
minLength: 1,
|
|
50887
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
50888
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
50889
|
+
readOnly: true
|
|
50204
50890
|
}
|
|
50205
50891
|
},
|
|
50206
50892
|
title: "Common"
|
|
@@ -50553,6 +51239,13 @@ var schemas_default = {
|
|
|
50553
51239
|
],
|
|
50554
51240
|
additionalProperties: false,
|
|
50555
51241
|
title: "Source Location"
|
|
51242
|
+
},
|
|
51243
|
+
autoScreenshot: {
|
|
51244
|
+
type: "string",
|
|
51245
|
+
minLength: 1,
|
|
51246
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
51247
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
51248
|
+
readOnly: true
|
|
50556
51249
|
}
|
|
50557
51250
|
},
|
|
50558
51251
|
title: "Common"
|
|
@@ -52002,6 +52695,13 @@ var schemas_default = {
|
|
|
52002
52695
|
],
|
|
52003
52696
|
additionalProperties: false,
|
|
52004
52697
|
title: "Source Location"
|
|
52698
|
+
},
|
|
52699
|
+
autoScreenshot: {
|
|
52700
|
+
type: "string",
|
|
52701
|
+
minLength: 1,
|
|
52702
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
52703
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
52704
|
+
readOnly: true
|
|
52005
52705
|
}
|
|
52006
52706
|
},
|
|
52007
52707
|
title: "Common"
|
|
@@ -52544,6 +53244,13 @@ var schemas_default = {
|
|
|
52544
53244
|
],
|
|
52545
53245
|
additionalProperties: false,
|
|
52546
53246
|
title: "Source Location"
|
|
53247
|
+
},
|
|
53248
|
+
autoScreenshot: {
|
|
53249
|
+
type: "string",
|
|
53250
|
+
minLength: 1,
|
|
53251
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
53252
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
53253
|
+
readOnly: true
|
|
52547
53254
|
}
|
|
52548
53255
|
},
|
|
52549
53256
|
title: "Common"
|
|
@@ -53638,6 +54345,13 @@ var schemas_default = {
|
|
|
53638
54345
|
],
|
|
53639
54346
|
additionalProperties: false,
|
|
53640
54347
|
title: "Source Location"
|
|
54348
|
+
},
|
|
54349
|
+
autoScreenshot: {
|
|
54350
|
+
type: "string",
|
|
54351
|
+
minLength: 1,
|
|
54352
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
54353
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
54354
|
+
readOnly: true
|
|
53641
54355
|
}
|
|
53642
54356
|
},
|
|
53643
54357
|
title: "Common"
|
|
@@ -53974,6 +54688,13 @@ var schemas_default = {
|
|
|
53974
54688
|
],
|
|
53975
54689
|
additionalProperties: false,
|
|
53976
54690
|
title: "Source Location"
|
|
54691
|
+
},
|
|
54692
|
+
autoScreenshot: {
|
|
54693
|
+
type: "string",
|
|
54694
|
+
minLength: 1,
|
|
54695
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
54696
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
54697
|
+
readOnly: true
|
|
53977
54698
|
}
|
|
53978
54699
|
},
|
|
53979
54700
|
title: "Common"
|
|
@@ -54296,6 +55017,13 @@ var schemas_default = {
|
|
|
54296
55017
|
],
|
|
54297
55018
|
additionalProperties: false,
|
|
54298
55019
|
title: "Source Location"
|
|
55020
|
+
},
|
|
55021
|
+
autoScreenshot: {
|
|
55022
|
+
type: "string",
|
|
55023
|
+
minLength: 1,
|
|
55024
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
55025
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
55026
|
+
readOnly: true
|
|
54299
55027
|
}
|
|
54300
55028
|
},
|
|
54301
55029
|
title: "Common"
|
|
@@ -54640,6 +55368,13 @@ var schemas_default = {
|
|
|
54640
55368
|
],
|
|
54641
55369
|
additionalProperties: false,
|
|
54642
55370
|
title: "Source Location"
|
|
55371
|
+
},
|
|
55372
|
+
autoScreenshot: {
|
|
55373
|
+
type: "string",
|
|
55374
|
+
minLength: 1,
|
|
55375
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
55376
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
55377
|
+
readOnly: true
|
|
54643
55378
|
}
|
|
54644
55379
|
},
|
|
54645
55380
|
title: "Common"
|
|
@@ -55427,6 +56162,13 @@ var schemas_default = {
|
|
|
55427
56162
|
],
|
|
55428
56163
|
additionalProperties: false,
|
|
55429
56164
|
title: "Source Location"
|
|
56165
|
+
},
|
|
56166
|
+
autoScreenshot: {
|
|
56167
|
+
type: "string",
|
|
56168
|
+
minLength: 1,
|
|
56169
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
56170
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
56171
|
+
readOnly: true
|
|
55430
56172
|
}
|
|
55431
56173
|
},
|
|
55432
56174
|
title: "Common"
|
|
@@ -55772,6 +56514,13 @@ var schemas_default = {
|
|
|
55772
56514
|
],
|
|
55773
56515
|
additionalProperties: false,
|
|
55774
56516
|
title: "Source Location"
|
|
56517
|
+
},
|
|
56518
|
+
autoScreenshot: {
|
|
56519
|
+
type: "string",
|
|
56520
|
+
minLength: 1,
|
|
56521
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
56522
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
56523
|
+
readOnly: true
|
|
55775
56524
|
}
|
|
55776
56525
|
},
|
|
55777
56526
|
title: "Common"
|
|
@@ -55973,6 +56722,13 @@ var schemas_default = {
|
|
|
55973
56722
|
],
|
|
55974
56723
|
additionalProperties: false,
|
|
55975
56724
|
title: "Source Location"
|
|
56725
|
+
},
|
|
56726
|
+
autoScreenshot: {
|
|
56727
|
+
type: "string",
|
|
56728
|
+
minLength: 1,
|
|
56729
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
56730
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
56731
|
+
readOnly: true
|
|
55976
56732
|
}
|
|
55977
56733
|
},
|
|
55978
56734
|
title: "Common"
|
|
@@ -56085,6 +56841,13 @@ var schemas_default = {
|
|
|
56085
56841
|
],
|
|
56086
56842
|
additionalProperties: false,
|
|
56087
56843
|
title: "Source Location"
|
|
56844
|
+
},
|
|
56845
|
+
autoScreenshot: {
|
|
56846
|
+
type: "string",
|
|
56847
|
+
minLength: 1,
|
|
56848
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
56849
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
56850
|
+
readOnly: true
|
|
56088
56851
|
}
|
|
56089
56852
|
},
|
|
56090
56853
|
title: "Common"
|
|
@@ -56194,6 +56957,13 @@ var schemas_default = {
|
|
|
56194
56957
|
],
|
|
56195
56958
|
additionalProperties: false,
|
|
56196
56959
|
title: "Source Location"
|
|
56960
|
+
},
|
|
56961
|
+
autoScreenshot: {
|
|
56962
|
+
type: "string",
|
|
56963
|
+
minLength: 1,
|
|
56964
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
56965
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
56966
|
+
readOnly: true
|
|
56197
56967
|
}
|
|
56198
56968
|
},
|
|
56199
56969
|
title: "Common"
|
|
@@ -56790,6 +57560,13 @@ var schemas_default = {
|
|
|
56790
57560
|
],
|
|
56791
57561
|
additionalProperties: false,
|
|
56792
57562
|
title: "Source Location"
|
|
57563
|
+
},
|
|
57564
|
+
autoScreenshot: {
|
|
57565
|
+
type: "string",
|
|
57566
|
+
minLength: 1,
|
|
57567
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
57568
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
57569
|
+
readOnly: true
|
|
56793
57570
|
}
|
|
56794
57571
|
},
|
|
56795
57572
|
title: "Common"
|
|
@@ -57118,6 +57895,13 @@ var schemas_default = {
|
|
|
57118
57895
|
],
|
|
57119
57896
|
additionalProperties: false,
|
|
57120
57897
|
title: "Source Location"
|
|
57898
|
+
},
|
|
57899
|
+
autoScreenshot: {
|
|
57900
|
+
type: "string",
|
|
57901
|
+
minLength: 1,
|
|
57902
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
57903
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
57904
|
+
readOnly: true
|
|
57121
57905
|
}
|
|
57122
57906
|
},
|
|
57123
57907
|
title: "Common"
|
|
@@ -58326,6 +59110,16 @@ var schemas_default = {
|
|
|
58326
59110
|
type: "string",
|
|
58327
59111
|
description: "Unique identifier for the test specification."
|
|
58328
59112
|
},
|
|
59113
|
+
runId: {
|
|
59114
|
+
type: "string",
|
|
59115
|
+
description: "Identifier for the run that produced this report, derived from the run's start timestamp. Matches the run's artifact folder name (`run-<runId>`). System-populated.",
|
|
59116
|
+
readOnly: true
|
|
59117
|
+
},
|
|
59118
|
+
runDir: {
|
|
59119
|
+
type: "string",
|
|
59120
|
+
description: "Absolute path to the run's artifact folder (`<output>/.doc-detective/run-<runId>/`), where the `runFolder` reporter archives results and `autoScreenshot` images are saved. Step-level `autoScreenshot` paths in the report are relative to this folder. System-populated.",
|
|
59121
|
+
readOnly: true
|
|
59122
|
+
},
|
|
58329
59123
|
specs: {
|
|
58330
59124
|
description: "Test specifications that were performed.",
|
|
58331
59125
|
type: "array",
|
|
@@ -58927,6 +59721,10 @@ var schemas_default = {
|
|
|
58927
59721
|
]
|
|
58928
59722
|
}
|
|
58929
59723
|
},
|
|
59724
|
+
autoScreenshot: {
|
|
59725
|
+
type: "boolean",
|
|
59726
|
+
description: "If `true`, captures a screenshot after every step in this spec's tests that runs in a browser. Overrides the config-level `autoScreenshot`; individual tests can override this value with their own `autoScreenshot`. When unset, defers to the config level."
|
|
59727
|
+
},
|
|
58930
59728
|
tests: {
|
|
58931
59729
|
description: "[Tests](test) to perform.",
|
|
58932
59730
|
type: "array",
|
|
@@ -58956,6 +59754,10 @@ var schemas_default = {
|
|
|
58956
59754
|
description: "Whether or not to detect steps in input files based on markup regex.",
|
|
58957
59755
|
default: true
|
|
58958
59756
|
},
|
|
59757
|
+
autoScreenshot: {
|
|
59758
|
+
type: "boolean",
|
|
59759
|
+
description: "If `true`, captures a screenshot after every step in this test that runs in a browser. Overrides `autoScreenshot` set at the spec or config level. When unset, defers to the spec level, then the config level."
|
|
59760
|
+
},
|
|
58959
59761
|
runOn: {
|
|
58960
59762
|
type: "array",
|
|
58961
59763
|
description: "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
|
|
@@ -59622,6 +60424,13 @@ var schemas_default = {
|
|
|
59622
60424
|
],
|
|
59623
60425
|
additionalProperties: false,
|
|
59624
60426
|
title: "Source Location"
|
|
60427
|
+
},
|
|
60428
|
+
autoScreenshot: {
|
|
60429
|
+
type: "string",
|
|
60430
|
+
minLength: 1,
|
|
60431
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
60432
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
60433
|
+
readOnly: true
|
|
59625
60434
|
}
|
|
59626
60435
|
},
|
|
59627
60436
|
title: "Common"
|
|
@@ -59675,6 +60484,13 @@ var schemas_default = {
|
|
|
59675
60484
|
description: "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
59676
60485
|
default: false
|
|
59677
60486
|
},
|
|
60487
|
+
autoScreenshot: {
|
|
60488
|
+
type: "string",
|
|
60489
|
+
minLength: 1,
|
|
60490
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
60491
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
60492
|
+
readOnly: true
|
|
60493
|
+
},
|
|
59678
60494
|
location: {
|
|
59679
60495
|
type: "object",
|
|
59680
60496
|
description: "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -59792,6 +60608,13 @@ var schemas_default = {
|
|
|
59792
60608
|
],
|
|
59793
60609
|
additionalProperties: false,
|
|
59794
60610
|
title: "Source Location"
|
|
60611
|
+
},
|
|
60612
|
+
autoScreenshot: {
|
|
60613
|
+
type: "string",
|
|
60614
|
+
minLength: 1,
|
|
60615
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
60616
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
60617
|
+
readOnly: true
|
|
59795
60618
|
}
|
|
59796
60619
|
},
|
|
59797
60620
|
title: "Common"
|
|
@@ -60100,6 +60923,13 @@ var schemas_default = {
|
|
|
60100
60923
|
],
|
|
60101
60924
|
additionalProperties: false,
|
|
60102
60925
|
title: "Source Location"
|
|
60926
|
+
},
|
|
60927
|
+
autoScreenshot: {
|
|
60928
|
+
type: "string",
|
|
60929
|
+
minLength: 1,
|
|
60930
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
60931
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
60932
|
+
readOnly: true
|
|
60103
60933
|
}
|
|
60104
60934
|
},
|
|
60105
60935
|
title: "Common"
|
|
@@ -60452,6 +61282,13 @@ var schemas_default = {
|
|
|
60452
61282
|
],
|
|
60453
61283
|
additionalProperties: false,
|
|
60454
61284
|
title: "Source Location"
|
|
61285
|
+
},
|
|
61286
|
+
autoScreenshot: {
|
|
61287
|
+
type: "string",
|
|
61288
|
+
minLength: 1,
|
|
61289
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
61290
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
61291
|
+
readOnly: true
|
|
60455
61292
|
}
|
|
60456
61293
|
},
|
|
60457
61294
|
title: "Common"
|
|
@@ -61901,6 +62738,13 @@ var schemas_default = {
|
|
|
61901
62738
|
],
|
|
61902
62739
|
additionalProperties: false,
|
|
61903
62740
|
title: "Source Location"
|
|
62741
|
+
},
|
|
62742
|
+
autoScreenshot: {
|
|
62743
|
+
type: "string",
|
|
62744
|
+
minLength: 1,
|
|
62745
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
62746
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
62747
|
+
readOnly: true
|
|
61904
62748
|
}
|
|
61905
62749
|
},
|
|
61906
62750
|
title: "Common"
|
|
@@ -62443,6 +63287,13 @@ var schemas_default = {
|
|
|
62443
63287
|
],
|
|
62444
63288
|
additionalProperties: false,
|
|
62445
63289
|
title: "Source Location"
|
|
63290
|
+
},
|
|
63291
|
+
autoScreenshot: {
|
|
63292
|
+
type: "string",
|
|
63293
|
+
minLength: 1,
|
|
63294
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
63295
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
63296
|
+
readOnly: true
|
|
62446
63297
|
}
|
|
62447
63298
|
},
|
|
62448
63299
|
title: "Common"
|
|
@@ -63537,6 +64388,13 @@ var schemas_default = {
|
|
|
63537
64388
|
],
|
|
63538
64389
|
additionalProperties: false,
|
|
63539
64390
|
title: "Source Location"
|
|
64391
|
+
},
|
|
64392
|
+
autoScreenshot: {
|
|
64393
|
+
type: "string",
|
|
64394
|
+
minLength: 1,
|
|
64395
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
64396
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
64397
|
+
readOnly: true
|
|
63540
64398
|
}
|
|
63541
64399
|
},
|
|
63542
64400
|
title: "Common"
|
|
@@ -63873,6 +64731,13 @@ var schemas_default = {
|
|
|
63873
64731
|
],
|
|
63874
64732
|
additionalProperties: false,
|
|
63875
64733
|
title: "Source Location"
|
|
64734
|
+
},
|
|
64735
|
+
autoScreenshot: {
|
|
64736
|
+
type: "string",
|
|
64737
|
+
minLength: 1,
|
|
64738
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
64739
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
64740
|
+
readOnly: true
|
|
63876
64741
|
}
|
|
63877
64742
|
},
|
|
63878
64743
|
title: "Common"
|
|
@@ -64195,6 +65060,13 @@ var schemas_default = {
|
|
|
64195
65060
|
],
|
|
64196
65061
|
additionalProperties: false,
|
|
64197
65062
|
title: "Source Location"
|
|
65063
|
+
},
|
|
65064
|
+
autoScreenshot: {
|
|
65065
|
+
type: "string",
|
|
65066
|
+
minLength: 1,
|
|
65067
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
65068
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
65069
|
+
readOnly: true
|
|
64198
65070
|
}
|
|
64199
65071
|
},
|
|
64200
65072
|
title: "Common"
|
|
@@ -64539,6 +65411,13 @@ var schemas_default = {
|
|
|
64539
65411
|
],
|
|
64540
65412
|
additionalProperties: false,
|
|
64541
65413
|
title: "Source Location"
|
|
65414
|
+
},
|
|
65415
|
+
autoScreenshot: {
|
|
65416
|
+
type: "string",
|
|
65417
|
+
minLength: 1,
|
|
65418
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
65419
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
65420
|
+
readOnly: true
|
|
64542
65421
|
}
|
|
64543
65422
|
},
|
|
64544
65423
|
title: "Common"
|
|
@@ -65326,6 +66205,13 @@ var schemas_default = {
|
|
|
65326
66205
|
],
|
|
65327
66206
|
additionalProperties: false,
|
|
65328
66207
|
title: "Source Location"
|
|
66208
|
+
},
|
|
66209
|
+
autoScreenshot: {
|
|
66210
|
+
type: "string",
|
|
66211
|
+
minLength: 1,
|
|
66212
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
66213
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
66214
|
+
readOnly: true
|
|
65329
66215
|
}
|
|
65330
66216
|
},
|
|
65331
66217
|
title: "Common"
|
|
@@ -65671,6 +66557,13 @@ var schemas_default = {
|
|
|
65671
66557
|
],
|
|
65672
66558
|
additionalProperties: false,
|
|
65673
66559
|
title: "Source Location"
|
|
66560
|
+
},
|
|
66561
|
+
autoScreenshot: {
|
|
66562
|
+
type: "string",
|
|
66563
|
+
minLength: 1,
|
|
66564
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
66565
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
66566
|
+
readOnly: true
|
|
65674
66567
|
}
|
|
65675
66568
|
},
|
|
65676
66569
|
title: "Common"
|
|
@@ -65872,6 +66765,13 @@ var schemas_default = {
|
|
|
65872
66765
|
],
|
|
65873
66766
|
additionalProperties: false,
|
|
65874
66767
|
title: "Source Location"
|
|
66768
|
+
},
|
|
66769
|
+
autoScreenshot: {
|
|
66770
|
+
type: "string",
|
|
66771
|
+
minLength: 1,
|
|
66772
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
66773
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
66774
|
+
readOnly: true
|
|
65875
66775
|
}
|
|
65876
66776
|
},
|
|
65877
66777
|
title: "Common"
|
|
@@ -65984,6 +66884,13 @@ var schemas_default = {
|
|
|
65984
66884
|
],
|
|
65985
66885
|
additionalProperties: false,
|
|
65986
66886
|
title: "Source Location"
|
|
66887
|
+
},
|
|
66888
|
+
autoScreenshot: {
|
|
66889
|
+
type: "string",
|
|
66890
|
+
minLength: 1,
|
|
66891
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
66892
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
66893
|
+
readOnly: true
|
|
65987
66894
|
}
|
|
65988
66895
|
},
|
|
65989
66896
|
title: "Common"
|
|
@@ -66093,6 +67000,13 @@ var schemas_default = {
|
|
|
66093
67000
|
],
|
|
66094
67001
|
additionalProperties: false,
|
|
66095
67002
|
title: "Source Location"
|
|
67003
|
+
},
|
|
67004
|
+
autoScreenshot: {
|
|
67005
|
+
type: "string",
|
|
67006
|
+
minLength: 1,
|
|
67007
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
67008
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
67009
|
+
readOnly: true
|
|
66096
67010
|
}
|
|
66097
67011
|
},
|
|
66098
67012
|
title: "Common"
|
|
@@ -66689,6 +67603,13 @@ var schemas_default = {
|
|
|
66689
67603
|
],
|
|
66690
67604
|
additionalProperties: false,
|
|
66691
67605
|
title: "Source Location"
|
|
67606
|
+
},
|
|
67607
|
+
autoScreenshot: {
|
|
67608
|
+
type: "string",
|
|
67609
|
+
minLength: 1,
|
|
67610
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
67611
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
67612
|
+
readOnly: true
|
|
66692
67613
|
}
|
|
66693
67614
|
},
|
|
66694
67615
|
title: "Common"
|
|
@@ -67017,6 +67938,13 @@ var schemas_default = {
|
|
|
67017
67938
|
],
|
|
67018
67939
|
additionalProperties: false,
|
|
67019
67940
|
title: "Source Location"
|
|
67941
|
+
},
|
|
67942
|
+
autoScreenshot: {
|
|
67943
|
+
type: "string",
|
|
67944
|
+
minLength: 1,
|
|
67945
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
67946
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
67947
|
+
readOnly: true
|
|
67020
67948
|
}
|
|
67021
67949
|
},
|
|
67022
67950
|
title: "Common"
|
|
@@ -67811,6 +68739,13 @@ var schemas_default = {
|
|
|
67811
68739
|
],
|
|
67812
68740
|
additionalProperties: false,
|
|
67813
68741
|
title: "Source Location"
|
|
68742
|
+
},
|
|
68743
|
+
autoScreenshot: {
|
|
68744
|
+
type: "string",
|
|
68745
|
+
minLength: 1,
|
|
68746
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
68747
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
68748
|
+
readOnly: true
|
|
67814
68749
|
}
|
|
67815
68750
|
},
|
|
67816
68751
|
title: "Common"
|
|
@@ -67864,6 +68799,13 @@ var schemas_default = {
|
|
|
67864
68799
|
description: "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
67865
68800
|
default: false
|
|
67866
68801
|
},
|
|
68802
|
+
autoScreenshot: {
|
|
68803
|
+
type: "string",
|
|
68804
|
+
minLength: 1,
|
|
68805
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
68806
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
68807
|
+
readOnly: true
|
|
68808
|
+
},
|
|
67867
68809
|
location: {
|
|
67868
68810
|
type: "object",
|
|
67869
68811
|
description: "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -67981,6 +68923,13 @@ var schemas_default = {
|
|
|
67981
68923
|
],
|
|
67982
68924
|
additionalProperties: false,
|
|
67983
68925
|
title: "Source Location"
|
|
68926
|
+
},
|
|
68927
|
+
autoScreenshot: {
|
|
68928
|
+
type: "string",
|
|
68929
|
+
minLength: 1,
|
|
68930
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
68931
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
68932
|
+
readOnly: true
|
|
67984
68933
|
}
|
|
67985
68934
|
},
|
|
67986
68935
|
title: "Common"
|
|
@@ -68289,6 +69238,13 @@ var schemas_default = {
|
|
|
68289
69238
|
],
|
|
68290
69239
|
additionalProperties: false,
|
|
68291
69240
|
title: "Source Location"
|
|
69241
|
+
},
|
|
69242
|
+
autoScreenshot: {
|
|
69243
|
+
type: "string",
|
|
69244
|
+
minLength: 1,
|
|
69245
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
69246
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
69247
|
+
readOnly: true
|
|
68292
69248
|
}
|
|
68293
69249
|
},
|
|
68294
69250
|
title: "Common"
|
|
@@ -68641,6 +69597,13 @@ var schemas_default = {
|
|
|
68641
69597
|
],
|
|
68642
69598
|
additionalProperties: false,
|
|
68643
69599
|
title: "Source Location"
|
|
69600
|
+
},
|
|
69601
|
+
autoScreenshot: {
|
|
69602
|
+
type: "string",
|
|
69603
|
+
minLength: 1,
|
|
69604
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
69605
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
69606
|
+
readOnly: true
|
|
68644
69607
|
}
|
|
68645
69608
|
},
|
|
68646
69609
|
title: "Common"
|
|
@@ -70090,6 +71053,13 @@ var schemas_default = {
|
|
|
70090
71053
|
],
|
|
70091
71054
|
additionalProperties: false,
|
|
70092
71055
|
title: "Source Location"
|
|
71056
|
+
},
|
|
71057
|
+
autoScreenshot: {
|
|
71058
|
+
type: "string",
|
|
71059
|
+
minLength: 1,
|
|
71060
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
71061
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
71062
|
+
readOnly: true
|
|
70093
71063
|
}
|
|
70094
71064
|
},
|
|
70095
71065
|
title: "Common"
|
|
@@ -70632,6 +71602,13 @@ var schemas_default = {
|
|
|
70632
71602
|
],
|
|
70633
71603
|
additionalProperties: false,
|
|
70634
71604
|
title: "Source Location"
|
|
71605
|
+
},
|
|
71606
|
+
autoScreenshot: {
|
|
71607
|
+
type: "string",
|
|
71608
|
+
minLength: 1,
|
|
71609
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
71610
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
71611
|
+
readOnly: true
|
|
70635
71612
|
}
|
|
70636
71613
|
},
|
|
70637
71614
|
title: "Common"
|
|
@@ -71726,6 +72703,13 @@ var schemas_default = {
|
|
|
71726
72703
|
],
|
|
71727
72704
|
additionalProperties: false,
|
|
71728
72705
|
title: "Source Location"
|
|
72706
|
+
},
|
|
72707
|
+
autoScreenshot: {
|
|
72708
|
+
type: "string",
|
|
72709
|
+
minLength: 1,
|
|
72710
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
72711
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
72712
|
+
readOnly: true
|
|
71729
72713
|
}
|
|
71730
72714
|
},
|
|
71731
72715
|
title: "Common"
|
|
@@ -72062,6 +73046,13 @@ var schemas_default = {
|
|
|
72062
73046
|
],
|
|
72063
73047
|
additionalProperties: false,
|
|
72064
73048
|
title: "Source Location"
|
|
73049
|
+
},
|
|
73050
|
+
autoScreenshot: {
|
|
73051
|
+
type: "string",
|
|
73052
|
+
minLength: 1,
|
|
73053
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
73054
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
73055
|
+
readOnly: true
|
|
72065
73056
|
}
|
|
72066
73057
|
},
|
|
72067
73058
|
title: "Common"
|
|
@@ -72384,6 +73375,13 @@ var schemas_default = {
|
|
|
72384
73375
|
],
|
|
72385
73376
|
additionalProperties: false,
|
|
72386
73377
|
title: "Source Location"
|
|
73378
|
+
},
|
|
73379
|
+
autoScreenshot: {
|
|
73380
|
+
type: "string",
|
|
73381
|
+
minLength: 1,
|
|
73382
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
73383
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
73384
|
+
readOnly: true
|
|
72387
73385
|
}
|
|
72388
73386
|
},
|
|
72389
73387
|
title: "Common"
|
|
@@ -72728,6 +73726,13 @@ var schemas_default = {
|
|
|
72728
73726
|
],
|
|
72729
73727
|
additionalProperties: false,
|
|
72730
73728
|
title: "Source Location"
|
|
73729
|
+
},
|
|
73730
|
+
autoScreenshot: {
|
|
73731
|
+
type: "string",
|
|
73732
|
+
minLength: 1,
|
|
73733
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
73734
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
73735
|
+
readOnly: true
|
|
72731
73736
|
}
|
|
72732
73737
|
},
|
|
72733
73738
|
title: "Common"
|
|
@@ -73515,6 +74520,13 @@ var schemas_default = {
|
|
|
73515
74520
|
],
|
|
73516
74521
|
additionalProperties: false,
|
|
73517
74522
|
title: "Source Location"
|
|
74523
|
+
},
|
|
74524
|
+
autoScreenshot: {
|
|
74525
|
+
type: "string",
|
|
74526
|
+
minLength: 1,
|
|
74527
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
74528
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
74529
|
+
readOnly: true
|
|
73518
74530
|
}
|
|
73519
74531
|
},
|
|
73520
74532
|
title: "Common"
|
|
@@ -73860,6 +74872,13 @@ var schemas_default = {
|
|
|
73860
74872
|
],
|
|
73861
74873
|
additionalProperties: false,
|
|
73862
74874
|
title: "Source Location"
|
|
74875
|
+
},
|
|
74876
|
+
autoScreenshot: {
|
|
74877
|
+
type: "string",
|
|
74878
|
+
minLength: 1,
|
|
74879
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
74880
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
74881
|
+
readOnly: true
|
|
73863
74882
|
}
|
|
73864
74883
|
},
|
|
73865
74884
|
title: "Common"
|
|
@@ -74061,6 +75080,13 @@ var schemas_default = {
|
|
|
74061
75080
|
],
|
|
74062
75081
|
additionalProperties: false,
|
|
74063
75082
|
title: "Source Location"
|
|
75083
|
+
},
|
|
75084
|
+
autoScreenshot: {
|
|
75085
|
+
type: "string",
|
|
75086
|
+
minLength: 1,
|
|
75087
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
75088
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
75089
|
+
readOnly: true
|
|
74064
75090
|
}
|
|
74065
75091
|
},
|
|
74066
75092
|
title: "Common"
|
|
@@ -74173,6 +75199,13 @@ var schemas_default = {
|
|
|
74173
75199
|
],
|
|
74174
75200
|
additionalProperties: false,
|
|
74175
75201
|
title: "Source Location"
|
|
75202
|
+
},
|
|
75203
|
+
autoScreenshot: {
|
|
75204
|
+
type: "string",
|
|
75205
|
+
minLength: 1,
|
|
75206
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
75207
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
75208
|
+
readOnly: true
|
|
74176
75209
|
}
|
|
74177
75210
|
},
|
|
74178
75211
|
title: "Common"
|
|
@@ -74282,6 +75315,13 @@ var schemas_default = {
|
|
|
74282
75315
|
],
|
|
74283
75316
|
additionalProperties: false,
|
|
74284
75317
|
title: "Source Location"
|
|
75318
|
+
},
|
|
75319
|
+
autoScreenshot: {
|
|
75320
|
+
type: "string",
|
|
75321
|
+
minLength: 1,
|
|
75322
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
75323
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
75324
|
+
readOnly: true
|
|
74285
75325
|
}
|
|
74286
75326
|
},
|
|
74287
75327
|
title: "Common"
|
|
@@ -74878,6 +75918,13 @@ var schemas_default = {
|
|
|
74878
75918
|
],
|
|
74879
75919
|
additionalProperties: false,
|
|
74880
75920
|
title: "Source Location"
|
|
75921
|
+
},
|
|
75922
|
+
autoScreenshot: {
|
|
75923
|
+
type: "string",
|
|
75924
|
+
minLength: 1,
|
|
75925
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
75926
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
75927
|
+
readOnly: true
|
|
74881
75928
|
}
|
|
74882
75929
|
},
|
|
74883
75930
|
title: "Common"
|
|
@@ -75206,6 +76253,13 @@ var schemas_default = {
|
|
|
75206
76253
|
],
|
|
75207
76254
|
additionalProperties: false,
|
|
75208
76255
|
title: "Source Location"
|
|
76256
|
+
},
|
|
76257
|
+
autoScreenshot: {
|
|
76258
|
+
type: "string",
|
|
76259
|
+
minLength: 1,
|
|
76260
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
76261
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
76262
|
+
readOnly: true
|
|
75209
76263
|
}
|
|
75210
76264
|
},
|
|
75211
76265
|
title: "Common"
|
|
@@ -78403,6 +79457,10 @@ var schemas_default = {
|
|
|
78403
79457
|
]
|
|
78404
79458
|
}
|
|
78405
79459
|
},
|
|
79460
|
+
autoScreenshot: {
|
|
79461
|
+
type: "boolean",
|
|
79462
|
+
description: "If `true`, captures a screenshot after every step in this spec's tests that runs in a browser. Overrides the config-level `autoScreenshot`; individual tests can override this value with their own `autoScreenshot`. When unset, defers to the config level."
|
|
79463
|
+
},
|
|
78406
79464
|
tests: {
|
|
78407
79465
|
description: "[Tests](test) to perform.",
|
|
78408
79466
|
type: "array",
|
|
@@ -78432,6 +79490,10 @@ var schemas_default = {
|
|
|
78432
79490
|
description: "Whether or not to detect steps in input files based on markup regex.",
|
|
78433
79491
|
default: true
|
|
78434
79492
|
},
|
|
79493
|
+
autoScreenshot: {
|
|
79494
|
+
type: "boolean",
|
|
79495
|
+
description: "If `true`, captures a screenshot after every step in this test that runs in a browser. Overrides `autoScreenshot` set at the spec or config level. When unset, defers to the spec level, then the config level."
|
|
79496
|
+
},
|
|
78435
79497
|
runOn: {
|
|
78436
79498
|
type: "array",
|
|
78437
79499
|
description: "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
|
|
@@ -79098,6 +80160,13 @@ var schemas_default = {
|
|
|
79098
80160
|
],
|
|
79099
80161
|
additionalProperties: false,
|
|
79100
80162
|
title: "Source Location"
|
|
80163
|
+
},
|
|
80164
|
+
autoScreenshot: {
|
|
80165
|
+
type: "string",
|
|
80166
|
+
minLength: 1,
|
|
80167
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
80168
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
80169
|
+
readOnly: true
|
|
79101
80170
|
}
|
|
79102
80171
|
},
|
|
79103
80172
|
title: "Common"
|
|
@@ -79151,6 +80220,13 @@ var schemas_default = {
|
|
|
79151
80220
|
description: "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
79152
80221
|
default: false
|
|
79153
80222
|
},
|
|
80223
|
+
autoScreenshot: {
|
|
80224
|
+
type: "string",
|
|
80225
|
+
minLength: 1,
|
|
80226
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
80227
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
80228
|
+
readOnly: true
|
|
80229
|
+
},
|
|
79154
80230
|
location: {
|
|
79155
80231
|
type: "object",
|
|
79156
80232
|
description: "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -79268,6 +80344,13 @@ var schemas_default = {
|
|
|
79268
80344
|
],
|
|
79269
80345
|
additionalProperties: false,
|
|
79270
80346
|
title: "Source Location"
|
|
80347
|
+
},
|
|
80348
|
+
autoScreenshot: {
|
|
80349
|
+
type: "string",
|
|
80350
|
+
minLength: 1,
|
|
80351
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
80352
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
80353
|
+
readOnly: true
|
|
79271
80354
|
}
|
|
79272
80355
|
},
|
|
79273
80356
|
title: "Common"
|
|
@@ -79576,6 +80659,13 @@ var schemas_default = {
|
|
|
79576
80659
|
],
|
|
79577
80660
|
additionalProperties: false,
|
|
79578
80661
|
title: "Source Location"
|
|
80662
|
+
},
|
|
80663
|
+
autoScreenshot: {
|
|
80664
|
+
type: "string",
|
|
80665
|
+
minLength: 1,
|
|
80666
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
80667
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
80668
|
+
readOnly: true
|
|
79579
80669
|
}
|
|
79580
80670
|
},
|
|
79581
80671
|
title: "Common"
|
|
@@ -79928,6 +81018,13 @@ var schemas_default = {
|
|
|
79928
81018
|
],
|
|
79929
81019
|
additionalProperties: false,
|
|
79930
81020
|
title: "Source Location"
|
|
81021
|
+
},
|
|
81022
|
+
autoScreenshot: {
|
|
81023
|
+
type: "string",
|
|
81024
|
+
minLength: 1,
|
|
81025
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
81026
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
81027
|
+
readOnly: true
|
|
79931
81028
|
}
|
|
79932
81029
|
},
|
|
79933
81030
|
title: "Common"
|
|
@@ -81377,6 +82474,13 @@ var schemas_default = {
|
|
|
81377
82474
|
],
|
|
81378
82475
|
additionalProperties: false,
|
|
81379
82476
|
title: "Source Location"
|
|
82477
|
+
},
|
|
82478
|
+
autoScreenshot: {
|
|
82479
|
+
type: "string",
|
|
82480
|
+
minLength: 1,
|
|
82481
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
82482
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
82483
|
+
readOnly: true
|
|
81380
82484
|
}
|
|
81381
82485
|
},
|
|
81382
82486
|
title: "Common"
|
|
@@ -81919,6 +83023,13 @@ var schemas_default = {
|
|
|
81919
83023
|
],
|
|
81920
83024
|
additionalProperties: false,
|
|
81921
83025
|
title: "Source Location"
|
|
83026
|
+
},
|
|
83027
|
+
autoScreenshot: {
|
|
83028
|
+
type: "string",
|
|
83029
|
+
minLength: 1,
|
|
83030
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
83031
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
83032
|
+
readOnly: true
|
|
81922
83033
|
}
|
|
81923
83034
|
},
|
|
81924
83035
|
title: "Common"
|
|
@@ -83013,6 +84124,13 @@ var schemas_default = {
|
|
|
83013
84124
|
],
|
|
83014
84125
|
additionalProperties: false,
|
|
83015
84126
|
title: "Source Location"
|
|
84127
|
+
},
|
|
84128
|
+
autoScreenshot: {
|
|
84129
|
+
type: "string",
|
|
84130
|
+
minLength: 1,
|
|
84131
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
84132
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
84133
|
+
readOnly: true
|
|
83016
84134
|
}
|
|
83017
84135
|
},
|
|
83018
84136
|
title: "Common"
|
|
@@ -83349,6 +84467,13 @@ var schemas_default = {
|
|
|
83349
84467
|
],
|
|
83350
84468
|
additionalProperties: false,
|
|
83351
84469
|
title: "Source Location"
|
|
84470
|
+
},
|
|
84471
|
+
autoScreenshot: {
|
|
84472
|
+
type: "string",
|
|
84473
|
+
minLength: 1,
|
|
84474
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
84475
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
84476
|
+
readOnly: true
|
|
83352
84477
|
}
|
|
83353
84478
|
},
|
|
83354
84479
|
title: "Common"
|
|
@@ -83671,6 +84796,13 @@ var schemas_default = {
|
|
|
83671
84796
|
],
|
|
83672
84797
|
additionalProperties: false,
|
|
83673
84798
|
title: "Source Location"
|
|
84799
|
+
},
|
|
84800
|
+
autoScreenshot: {
|
|
84801
|
+
type: "string",
|
|
84802
|
+
minLength: 1,
|
|
84803
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
84804
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
84805
|
+
readOnly: true
|
|
83674
84806
|
}
|
|
83675
84807
|
},
|
|
83676
84808
|
title: "Common"
|
|
@@ -84015,6 +85147,13 @@ var schemas_default = {
|
|
|
84015
85147
|
],
|
|
84016
85148
|
additionalProperties: false,
|
|
84017
85149
|
title: "Source Location"
|
|
85150
|
+
},
|
|
85151
|
+
autoScreenshot: {
|
|
85152
|
+
type: "string",
|
|
85153
|
+
minLength: 1,
|
|
85154
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
85155
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
85156
|
+
readOnly: true
|
|
84018
85157
|
}
|
|
84019
85158
|
},
|
|
84020
85159
|
title: "Common"
|
|
@@ -84802,6 +85941,13 @@ var schemas_default = {
|
|
|
84802
85941
|
],
|
|
84803
85942
|
additionalProperties: false,
|
|
84804
85943
|
title: "Source Location"
|
|
85944
|
+
},
|
|
85945
|
+
autoScreenshot: {
|
|
85946
|
+
type: "string",
|
|
85947
|
+
minLength: 1,
|
|
85948
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
85949
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
85950
|
+
readOnly: true
|
|
84805
85951
|
}
|
|
84806
85952
|
},
|
|
84807
85953
|
title: "Common"
|
|
@@ -85147,6 +86293,13 @@ var schemas_default = {
|
|
|
85147
86293
|
],
|
|
85148
86294
|
additionalProperties: false,
|
|
85149
86295
|
title: "Source Location"
|
|
86296
|
+
},
|
|
86297
|
+
autoScreenshot: {
|
|
86298
|
+
type: "string",
|
|
86299
|
+
minLength: 1,
|
|
86300
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
86301
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
86302
|
+
readOnly: true
|
|
85150
86303
|
}
|
|
85151
86304
|
},
|
|
85152
86305
|
title: "Common"
|
|
@@ -85348,6 +86501,13 @@ var schemas_default = {
|
|
|
85348
86501
|
],
|
|
85349
86502
|
additionalProperties: false,
|
|
85350
86503
|
title: "Source Location"
|
|
86504
|
+
},
|
|
86505
|
+
autoScreenshot: {
|
|
86506
|
+
type: "string",
|
|
86507
|
+
minLength: 1,
|
|
86508
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
86509
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
86510
|
+
readOnly: true
|
|
85351
86511
|
}
|
|
85352
86512
|
},
|
|
85353
86513
|
title: "Common"
|
|
@@ -85460,6 +86620,13 @@ var schemas_default = {
|
|
|
85460
86620
|
],
|
|
85461
86621
|
additionalProperties: false,
|
|
85462
86622
|
title: "Source Location"
|
|
86623
|
+
},
|
|
86624
|
+
autoScreenshot: {
|
|
86625
|
+
type: "string",
|
|
86626
|
+
minLength: 1,
|
|
86627
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
86628
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
86629
|
+
readOnly: true
|
|
85463
86630
|
}
|
|
85464
86631
|
},
|
|
85465
86632
|
title: "Common"
|
|
@@ -85569,6 +86736,13 @@ var schemas_default = {
|
|
|
85569
86736
|
],
|
|
85570
86737
|
additionalProperties: false,
|
|
85571
86738
|
title: "Source Location"
|
|
86739
|
+
},
|
|
86740
|
+
autoScreenshot: {
|
|
86741
|
+
type: "string",
|
|
86742
|
+
minLength: 1,
|
|
86743
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
86744
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
86745
|
+
readOnly: true
|
|
85572
86746
|
}
|
|
85573
86747
|
},
|
|
85574
86748
|
title: "Common"
|
|
@@ -86165,6 +87339,13 @@ var schemas_default = {
|
|
|
86165
87339
|
],
|
|
86166
87340
|
additionalProperties: false,
|
|
86167
87341
|
title: "Source Location"
|
|
87342
|
+
},
|
|
87343
|
+
autoScreenshot: {
|
|
87344
|
+
type: "string",
|
|
87345
|
+
minLength: 1,
|
|
87346
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
87347
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
87348
|
+
readOnly: true
|
|
86168
87349
|
}
|
|
86169
87350
|
},
|
|
86170
87351
|
title: "Common"
|
|
@@ -86493,6 +87674,13 @@ var schemas_default = {
|
|
|
86493
87674
|
],
|
|
86494
87675
|
additionalProperties: false,
|
|
86495
87676
|
title: "Source Location"
|
|
87677
|
+
},
|
|
87678
|
+
autoScreenshot: {
|
|
87679
|
+
type: "string",
|
|
87680
|
+
minLength: 1,
|
|
87681
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
87682
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
87683
|
+
readOnly: true
|
|
86496
87684
|
}
|
|
86497
87685
|
},
|
|
86498
87686
|
title: "Common"
|
|
@@ -87287,6 +88475,13 @@ var schemas_default = {
|
|
|
87287
88475
|
],
|
|
87288
88476
|
additionalProperties: false,
|
|
87289
88477
|
title: "Source Location"
|
|
88478
|
+
},
|
|
88479
|
+
autoScreenshot: {
|
|
88480
|
+
type: "string",
|
|
88481
|
+
minLength: 1,
|
|
88482
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
88483
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
88484
|
+
readOnly: true
|
|
87290
88485
|
}
|
|
87291
88486
|
},
|
|
87292
88487
|
title: "Common"
|
|
@@ -87340,6 +88535,13 @@ var schemas_default = {
|
|
|
87340
88535
|
description: "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
87341
88536
|
default: false
|
|
87342
88537
|
},
|
|
88538
|
+
autoScreenshot: {
|
|
88539
|
+
type: "string",
|
|
88540
|
+
minLength: 1,
|
|
88541
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
88542
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
88543
|
+
readOnly: true
|
|
88544
|
+
},
|
|
87343
88545
|
location: {
|
|
87344
88546
|
type: "object",
|
|
87345
88547
|
description: "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -87457,6 +88659,13 @@ var schemas_default = {
|
|
|
87457
88659
|
],
|
|
87458
88660
|
additionalProperties: false,
|
|
87459
88661
|
title: "Source Location"
|
|
88662
|
+
},
|
|
88663
|
+
autoScreenshot: {
|
|
88664
|
+
type: "string",
|
|
88665
|
+
minLength: 1,
|
|
88666
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
88667
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
88668
|
+
readOnly: true
|
|
87460
88669
|
}
|
|
87461
88670
|
},
|
|
87462
88671
|
title: "Common"
|
|
@@ -87765,6 +88974,13 @@ var schemas_default = {
|
|
|
87765
88974
|
],
|
|
87766
88975
|
additionalProperties: false,
|
|
87767
88976
|
title: "Source Location"
|
|
88977
|
+
},
|
|
88978
|
+
autoScreenshot: {
|
|
88979
|
+
type: "string",
|
|
88980
|
+
minLength: 1,
|
|
88981
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
88982
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
88983
|
+
readOnly: true
|
|
87768
88984
|
}
|
|
87769
88985
|
},
|
|
87770
88986
|
title: "Common"
|
|
@@ -88117,6 +89333,13 @@ var schemas_default = {
|
|
|
88117
89333
|
],
|
|
88118
89334
|
additionalProperties: false,
|
|
88119
89335
|
title: "Source Location"
|
|
89336
|
+
},
|
|
89337
|
+
autoScreenshot: {
|
|
89338
|
+
type: "string",
|
|
89339
|
+
minLength: 1,
|
|
89340
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
89341
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
89342
|
+
readOnly: true
|
|
88120
89343
|
}
|
|
88121
89344
|
},
|
|
88122
89345
|
title: "Common"
|
|
@@ -89566,6 +90789,13 @@ var schemas_default = {
|
|
|
89566
90789
|
],
|
|
89567
90790
|
additionalProperties: false,
|
|
89568
90791
|
title: "Source Location"
|
|
90792
|
+
},
|
|
90793
|
+
autoScreenshot: {
|
|
90794
|
+
type: "string",
|
|
90795
|
+
minLength: 1,
|
|
90796
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
90797
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
90798
|
+
readOnly: true
|
|
89569
90799
|
}
|
|
89570
90800
|
},
|
|
89571
90801
|
title: "Common"
|
|
@@ -90108,6 +91338,13 @@ var schemas_default = {
|
|
|
90108
91338
|
],
|
|
90109
91339
|
additionalProperties: false,
|
|
90110
91340
|
title: "Source Location"
|
|
91341
|
+
},
|
|
91342
|
+
autoScreenshot: {
|
|
91343
|
+
type: "string",
|
|
91344
|
+
minLength: 1,
|
|
91345
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
91346
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
91347
|
+
readOnly: true
|
|
90111
91348
|
}
|
|
90112
91349
|
},
|
|
90113
91350
|
title: "Common"
|
|
@@ -91202,6 +92439,13 @@ var schemas_default = {
|
|
|
91202
92439
|
],
|
|
91203
92440
|
additionalProperties: false,
|
|
91204
92441
|
title: "Source Location"
|
|
92442
|
+
},
|
|
92443
|
+
autoScreenshot: {
|
|
92444
|
+
type: "string",
|
|
92445
|
+
minLength: 1,
|
|
92446
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
92447
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
92448
|
+
readOnly: true
|
|
91205
92449
|
}
|
|
91206
92450
|
},
|
|
91207
92451
|
title: "Common"
|
|
@@ -91538,6 +92782,13 @@ var schemas_default = {
|
|
|
91538
92782
|
],
|
|
91539
92783
|
additionalProperties: false,
|
|
91540
92784
|
title: "Source Location"
|
|
92785
|
+
},
|
|
92786
|
+
autoScreenshot: {
|
|
92787
|
+
type: "string",
|
|
92788
|
+
minLength: 1,
|
|
92789
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
92790
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
92791
|
+
readOnly: true
|
|
91541
92792
|
}
|
|
91542
92793
|
},
|
|
91543
92794
|
title: "Common"
|
|
@@ -91860,6 +93111,13 @@ var schemas_default = {
|
|
|
91860
93111
|
],
|
|
91861
93112
|
additionalProperties: false,
|
|
91862
93113
|
title: "Source Location"
|
|
93114
|
+
},
|
|
93115
|
+
autoScreenshot: {
|
|
93116
|
+
type: "string",
|
|
93117
|
+
minLength: 1,
|
|
93118
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
93119
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
93120
|
+
readOnly: true
|
|
91863
93121
|
}
|
|
91864
93122
|
},
|
|
91865
93123
|
title: "Common"
|
|
@@ -92204,6 +93462,13 @@ var schemas_default = {
|
|
|
92204
93462
|
],
|
|
92205
93463
|
additionalProperties: false,
|
|
92206
93464
|
title: "Source Location"
|
|
93465
|
+
},
|
|
93466
|
+
autoScreenshot: {
|
|
93467
|
+
type: "string",
|
|
93468
|
+
minLength: 1,
|
|
93469
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
93470
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
93471
|
+
readOnly: true
|
|
92207
93472
|
}
|
|
92208
93473
|
},
|
|
92209
93474
|
title: "Common"
|
|
@@ -92991,6 +94256,13 @@ var schemas_default = {
|
|
|
92991
94256
|
],
|
|
92992
94257
|
additionalProperties: false,
|
|
92993
94258
|
title: "Source Location"
|
|
94259
|
+
},
|
|
94260
|
+
autoScreenshot: {
|
|
94261
|
+
type: "string",
|
|
94262
|
+
minLength: 1,
|
|
94263
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
94264
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
94265
|
+
readOnly: true
|
|
92994
94266
|
}
|
|
92995
94267
|
},
|
|
92996
94268
|
title: "Common"
|
|
@@ -93336,6 +94608,13 @@ var schemas_default = {
|
|
|
93336
94608
|
],
|
|
93337
94609
|
additionalProperties: false,
|
|
93338
94610
|
title: "Source Location"
|
|
94611
|
+
},
|
|
94612
|
+
autoScreenshot: {
|
|
94613
|
+
type: "string",
|
|
94614
|
+
minLength: 1,
|
|
94615
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
94616
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
94617
|
+
readOnly: true
|
|
93339
94618
|
}
|
|
93340
94619
|
},
|
|
93341
94620
|
title: "Common"
|
|
@@ -93537,6 +94816,13 @@ var schemas_default = {
|
|
|
93537
94816
|
],
|
|
93538
94817
|
additionalProperties: false,
|
|
93539
94818
|
title: "Source Location"
|
|
94819
|
+
},
|
|
94820
|
+
autoScreenshot: {
|
|
94821
|
+
type: "string",
|
|
94822
|
+
minLength: 1,
|
|
94823
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
94824
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
94825
|
+
readOnly: true
|
|
93540
94826
|
}
|
|
93541
94827
|
},
|
|
93542
94828
|
title: "Common"
|
|
@@ -93649,6 +94935,13 @@ var schemas_default = {
|
|
|
93649
94935
|
],
|
|
93650
94936
|
additionalProperties: false,
|
|
93651
94937
|
title: "Source Location"
|
|
94938
|
+
},
|
|
94939
|
+
autoScreenshot: {
|
|
94940
|
+
type: "string",
|
|
94941
|
+
minLength: 1,
|
|
94942
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
94943
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
94944
|
+
readOnly: true
|
|
93652
94945
|
}
|
|
93653
94946
|
},
|
|
93654
94947
|
title: "Common"
|
|
@@ -93758,6 +95051,13 @@ var schemas_default = {
|
|
|
93758
95051
|
],
|
|
93759
95052
|
additionalProperties: false,
|
|
93760
95053
|
title: "Source Location"
|
|
95054
|
+
},
|
|
95055
|
+
autoScreenshot: {
|
|
95056
|
+
type: "string",
|
|
95057
|
+
minLength: 1,
|
|
95058
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
95059
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
95060
|
+
readOnly: true
|
|
93761
95061
|
}
|
|
93762
95062
|
},
|
|
93763
95063
|
title: "Common"
|
|
@@ -94354,6 +95654,13 @@ var schemas_default = {
|
|
|
94354
95654
|
],
|
|
94355
95655
|
additionalProperties: false,
|
|
94356
95656
|
title: "Source Location"
|
|
95657
|
+
},
|
|
95658
|
+
autoScreenshot: {
|
|
95659
|
+
type: "string",
|
|
95660
|
+
minLength: 1,
|
|
95661
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
95662
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
95663
|
+
readOnly: true
|
|
94357
95664
|
}
|
|
94358
95665
|
},
|
|
94359
95666
|
title: "Common"
|
|
@@ -94682,6 +95989,13 @@ var schemas_default = {
|
|
|
94682
95989
|
],
|
|
94683
95990
|
additionalProperties: false,
|
|
94684
95991
|
title: "Source Location"
|
|
95992
|
+
},
|
|
95993
|
+
autoScreenshot: {
|
|
95994
|
+
type: "string",
|
|
95995
|
+
minLength: 1,
|
|
95996
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
95997
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
95998
|
+
readOnly: true
|
|
94685
95999
|
}
|
|
94686
96000
|
},
|
|
94687
96001
|
title: "Common"
|
|
@@ -95756,6 +97070,13 @@ var schemas_default = {
|
|
|
95756
97070
|
],
|
|
95757
97071
|
additionalProperties: false,
|
|
95758
97072
|
title: "Source Location"
|
|
97073
|
+
},
|
|
97074
|
+
autoScreenshot: {
|
|
97075
|
+
type: "string",
|
|
97076
|
+
minLength: 1,
|
|
97077
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
97078
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
97079
|
+
readOnly: true
|
|
95759
97080
|
}
|
|
95760
97081
|
},
|
|
95761
97082
|
title: "Common"
|
|
@@ -95809,6 +97130,13 @@ var schemas_default = {
|
|
|
95809
97130
|
description: "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
95810
97131
|
default: false
|
|
95811
97132
|
},
|
|
97133
|
+
autoScreenshot: {
|
|
97134
|
+
type: "string",
|
|
97135
|
+
minLength: 1,
|
|
97136
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
97137
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
97138
|
+
readOnly: true
|
|
97139
|
+
},
|
|
95812
97140
|
location: {
|
|
95813
97141
|
type: "object",
|
|
95814
97142
|
description: "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -95926,6 +97254,13 @@ var schemas_default = {
|
|
|
95926
97254
|
],
|
|
95927
97255
|
additionalProperties: false,
|
|
95928
97256
|
title: "Source Location"
|
|
97257
|
+
},
|
|
97258
|
+
autoScreenshot: {
|
|
97259
|
+
type: "string",
|
|
97260
|
+
minLength: 1,
|
|
97261
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
97262
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
97263
|
+
readOnly: true
|
|
95929
97264
|
}
|
|
95930
97265
|
},
|
|
95931
97266
|
title: "Common"
|
|
@@ -96234,6 +97569,13 @@ var schemas_default = {
|
|
|
96234
97569
|
],
|
|
96235
97570
|
additionalProperties: false,
|
|
96236
97571
|
title: "Source Location"
|
|
97572
|
+
},
|
|
97573
|
+
autoScreenshot: {
|
|
97574
|
+
type: "string",
|
|
97575
|
+
minLength: 1,
|
|
97576
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
97577
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
97578
|
+
readOnly: true
|
|
96237
97579
|
}
|
|
96238
97580
|
},
|
|
96239
97581
|
title: "Common"
|
|
@@ -96586,6 +97928,13 @@ var schemas_default = {
|
|
|
96586
97928
|
],
|
|
96587
97929
|
additionalProperties: false,
|
|
96588
97930
|
title: "Source Location"
|
|
97931
|
+
},
|
|
97932
|
+
autoScreenshot: {
|
|
97933
|
+
type: "string",
|
|
97934
|
+
minLength: 1,
|
|
97935
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
97936
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
97937
|
+
readOnly: true
|
|
96589
97938
|
}
|
|
96590
97939
|
},
|
|
96591
97940
|
title: "Common"
|
|
@@ -98035,6 +99384,13 @@ var schemas_default = {
|
|
|
98035
99384
|
],
|
|
98036
99385
|
additionalProperties: false,
|
|
98037
99386
|
title: "Source Location"
|
|
99387
|
+
},
|
|
99388
|
+
autoScreenshot: {
|
|
99389
|
+
type: "string",
|
|
99390
|
+
minLength: 1,
|
|
99391
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
99392
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
99393
|
+
readOnly: true
|
|
98038
99394
|
}
|
|
98039
99395
|
},
|
|
98040
99396
|
title: "Common"
|
|
@@ -98577,6 +99933,13 @@ var schemas_default = {
|
|
|
98577
99933
|
],
|
|
98578
99934
|
additionalProperties: false,
|
|
98579
99935
|
title: "Source Location"
|
|
99936
|
+
},
|
|
99937
|
+
autoScreenshot: {
|
|
99938
|
+
type: "string",
|
|
99939
|
+
minLength: 1,
|
|
99940
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
99941
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
99942
|
+
readOnly: true
|
|
98580
99943
|
}
|
|
98581
99944
|
},
|
|
98582
99945
|
title: "Common"
|
|
@@ -99671,6 +101034,13 @@ var schemas_default = {
|
|
|
99671
101034
|
],
|
|
99672
101035
|
additionalProperties: false,
|
|
99673
101036
|
title: "Source Location"
|
|
101037
|
+
},
|
|
101038
|
+
autoScreenshot: {
|
|
101039
|
+
type: "string",
|
|
101040
|
+
minLength: 1,
|
|
101041
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
101042
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
101043
|
+
readOnly: true
|
|
99674
101044
|
}
|
|
99675
101045
|
},
|
|
99676
101046
|
title: "Common"
|
|
@@ -100007,6 +101377,13 @@ var schemas_default = {
|
|
|
100007
101377
|
],
|
|
100008
101378
|
additionalProperties: false,
|
|
100009
101379
|
title: "Source Location"
|
|
101380
|
+
},
|
|
101381
|
+
autoScreenshot: {
|
|
101382
|
+
type: "string",
|
|
101383
|
+
minLength: 1,
|
|
101384
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
101385
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
101386
|
+
readOnly: true
|
|
100010
101387
|
}
|
|
100011
101388
|
},
|
|
100012
101389
|
title: "Common"
|
|
@@ -100329,6 +101706,13 @@ var schemas_default = {
|
|
|
100329
101706
|
],
|
|
100330
101707
|
additionalProperties: false,
|
|
100331
101708
|
title: "Source Location"
|
|
101709
|
+
},
|
|
101710
|
+
autoScreenshot: {
|
|
101711
|
+
type: "string",
|
|
101712
|
+
minLength: 1,
|
|
101713
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
101714
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
101715
|
+
readOnly: true
|
|
100332
101716
|
}
|
|
100333
101717
|
},
|
|
100334
101718
|
title: "Common"
|
|
@@ -100673,6 +102057,13 @@ var schemas_default = {
|
|
|
100673
102057
|
],
|
|
100674
102058
|
additionalProperties: false,
|
|
100675
102059
|
title: "Source Location"
|
|
102060
|
+
},
|
|
102061
|
+
autoScreenshot: {
|
|
102062
|
+
type: "string",
|
|
102063
|
+
minLength: 1,
|
|
102064
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
102065
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
102066
|
+
readOnly: true
|
|
100676
102067
|
}
|
|
100677
102068
|
},
|
|
100678
102069
|
title: "Common"
|
|
@@ -101460,6 +102851,13 @@ var schemas_default = {
|
|
|
101460
102851
|
],
|
|
101461
102852
|
additionalProperties: false,
|
|
101462
102853
|
title: "Source Location"
|
|
102854
|
+
},
|
|
102855
|
+
autoScreenshot: {
|
|
102856
|
+
type: "string",
|
|
102857
|
+
minLength: 1,
|
|
102858
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
102859
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
102860
|
+
readOnly: true
|
|
101463
102861
|
}
|
|
101464
102862
|
},
|
|
101465
102863
|
title: "Common"
|
|
@@ -101805,6 +103203,13 @@ var schemas_default = {
|
|
|
101805
103203
|
],
|
|
101806
103204
|
additionalProperties: false,
|
|
101807
103205
|
title: "Source Location"
|
|
103206
|
+
},
|
|
103207
|
+
autoScreenshot: {
|
|
103208
|
+
type: "string",
|
|
103209
|
+
minLength: 1,
|
|
103210
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
103211
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
103212
|
+
readOnly: true
|
|
101808
103213
|
}
|
|
101809
103214
|
},
|
|
101810
103215
|
title: "Common"
|
|
@@ -102006,6 +103411,13 @@ var schemas_default = {
|
|
|
102006
103411
|
],
|
|
102007
103412
|
additionalProperties: false,
|
|
102008
103413
|
title: "Source Location"
|
|
103414
|
+
},
|
|
103415
|
+
autoScreenshot: {
|
|
103416
|
+
type: "string",
|
|
103417
|
+
minLength: 1,
|
|
103418
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
103419
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
103420
|
+
readOnly: true
|
|
102009
103421
|
}
|
|
102010
103422
|
},
|
|
102011
103423
|
title: "Common"
|
|
@@ -102118,6 +103530,13 @@ var schemas_default = {
|
|
|
102118
103530
|
],
|
|
102119
103531
|
additionalProperties: false,
|
|
102120
103532
|
title: "Source Location"
|
|
103533
|
+
},
|
|
103534
|
+
autoScreenshot: {
|
|
103535
|
+
type: "string",
|
|
103536
|
+
minLength: 1,
|
|
103537
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
103538
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
103539
|
+
readOnly: true
|
|
102121
103540
|
}
|
|
102122
103541
|
},
|
|
102123
103542
|
title: "Common"
|
|
@@ -102227,6 +103646,13 @@ var schemas_default = {
|
|
|
102227
103646
|
],
|
|
102228
103647
|
additionalProperties: false,
|
|
102229
103648
|
title: "Source Location"
|
|
103649
|
+
},
|
|
103650
|
+
autoScreenshot: {
|
|
103651
|
+
type: "string",
|
|
103652
|
+
minLength: 1,
|
|
103653
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
103654
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
103655
|
+
readOnly: true
|
|
102230
103656
|
}
|
|
102231
103657
|
},
|
|
102232
103658
|
title: "Common"
|
|
@@ -102823,6 +104249,13 @@ var schemas_default = {
|
|
|
102823
104249
|
],
|
|
102824
104250
|
additionalProperties: false,
|
|
102825
104251
|
title: "Source Location"
|
|
104252
|
+
},
|
|
104253
|
+
autoScreenshot: {
|
|
104254
|
+
type: "string",
|
|
104255
|
+
minLength: 1,
|
|
104256
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
104257
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
104258
|
+
readOnly: true
|
|
102826
104259
|
}
|
|
102827
104260
|
},
|
|
102828
104261
|
title: "Common"
|
|
@@ -103151,6 +104584,13 @@ var schemas_default = {
|
|
|
103151
104584
|
],
|
|
103152
104585
|
additionalProperties: false,
|
|
103153
104586
|
title: "Source Location"
|
|
104587
|
+
},
|
|
104588
|
+
autoScreenshot: {
|
|
104589
|
+
type: "string",
|
|
104590
|
+
minLength: 1,
|
|
104591
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
104592
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
104593
|
+
readOnly: true
|
|
103154
104594
|
}
|
|
103155
104595
|
},
|
|
103156
104596
|
title: "Common"
|
|
@@ -103632,6 +105072,10 @@ var schemas_default = {
|
|
|
103632
105072
|
description: "Whether or not to detect steps in input files based on markup regex.",
|
|
103633
105073
|
default: true
|
|
103634
105074
|
},
|
|
105075
|
+
autoScreenshot: {
|
|
105076
|
+
type: "boolean",
|
|
105077
|
+
description: "If `true`, captures a screenshot after every step in this test that runs in a browser. Overrides `autoScreenshot` set at the spec or config level. When unset, defers to the spec level, then the config level."
|
|
105078
|
+
},
|
|
103635
105079
|
runOn: {
|
|
103636
105080
|
type: "array",
|
|
103637
105081
|
description: "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
|
|
@@ -104298,6 +105742,13 @@ var schemas_default = {
|
|
|
104298
105742
|
],
|
|
104299
105743
|
additionalProperties: false,
|
|
104300
105744
|
title: "Source Location"
|
|
105745
|
+
},
|
|
105746
|
+
autoScreenshot: {
|
|
105747
|
+
type: "string",
|
|
105748
|
+
minLength: 1,
|
|
105749
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
105750
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
105751
|
+
readOnly: true
|
|
104301
105752
|
}
|
|
104302
105753
|
},
|
|
104303
105754
|
title: "Common"
|
|
@@ -104351,6 +105802,13 @@ var schemas_default = {
|
|
|
104351
105802
|
description: "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
104352
105803
|
default: false
|
|
104353
105804
|
},
|
|
105805
|
+
autoScreenshot: {
|
|
105806
|
+
type: "string",
|
|
105807
|
+
minLength: 1,
|
|
105808
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
105809
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
105810
|
+
readOnly: true
|
|
105811
|
+
},
|
|
104354
105812
|
location: {
|
|
104355
105813
|
type: "object",
|
|
104356
105814
|
description: "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -104468,6 +105926,13 @@ var schemas_default = {
|
|
|
104468
105926
|
],
|
|
104469
105927
|
additionalProperties: false,
|
|
104470
105928
|
title: "Source Location"
|
|
105929
|
+
},
|
|
105930
|
+
autoScreenshot: {
|
|
105931
|
+
type: "string",
|
|
105932
|
+
minLength: 1,
|
|
105933
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
105934
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
105935
|
+
readOnly: true
|
|
104471
105936
|
}
|
|
104472
105937
|
},
|
|
104473
105938
|
title: "Common"
|
|
@@ -104776,6 +106241,13 @@ var schemas_default = {
|
|
|
104776
106241
|
],
|
|
104777
106242
|
additionalProperties: false,
|
|
104778
106243
|
title: "Source Location"
|
|
106244
|
+
},
|
|
106245
|
+
autoScreenshot: {
|
|
106246
|
+
type: "string",
|
|
106247
|
+
minLength: 1,
|
|
106248
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
106249
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
106250
|
+
readOnly: true
|
|
104779
106251
|
}
|
|
104780
106252
|
},
|
|
104781
106253
|
title: "Common"
|
|
@@ -105128,6 +106600,13 @@ var schemas_default = {
|
|
|
105128
106600
|
],
|
|
105129
106601
|
additionalProperties: false,
|
|
105130
106602
|
title: "Source Location"
|
|
106603
|
+
},
|
|
106604
|
+
autoScreenshot: {
|
|
106605
|
+
type: "string",
|
|
106606
|
+
minLength: 1,
|
|
106607
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
106608
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
106609
|
+
readOnly: true
|
|
105131
106610
|
}
|
|
105132
106611
|
},
|
|
105133
106612
|
title: "Common"
|
|
@@ -106577,6 +108056,13 @@ var schemas_default = {
|
|
|
106577
108056
|
],
|
|
106578
108057
|
additionalProperties: false,
|
|
106579
108058
|
title: "Source Location"
|
|
108059
|
+
},
|
|
108060
|
+
autoScreenshot: {
|
|
108061
|
+
type: "string",
|
|
108062
|
+
minLength: 1,
|
|
108063
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
108064
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
108065
|
+
readOnly: true
|
|
106580
108066
|
}
|
|
106581
108067
|
},
|
|
106582
108068
|
title: "Common"
|
|
@@ -107119,6 +108605,13 @@ var schemas_default = {
|
|
|
107119
108605
|
],
|
|
107120
108606
|
additionalProperties: false,
|
|
107121
108607
|
title: "Source Location"
|
|
108608
|
+
},
|
|
108609
|
+
autoScreenshot: {
|
|
108610
|
+
type: "string",
|
|
108611
|
+
minLength: 1,
|
|
108612
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
108613
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
108614
|
+
readOnly: true
|
|
107122
108615
|
}
|
|
107123
108616
|
},
|
|
107124
108617
|
title: "Common"
|
|
@@ -108213,6 +109706,13 @@ var schemas_default = {
|
|
|
108213
109706
|
],
|
|
108214
109707
|
additionalProperties: false,
|
|
108215
109708
|
title: "Source Location"
|
|
109709
|
+
},
|
|
109710
|
+
autoScreenshot: {
|
|
109711
|
+
type: "string",
|
|
109712
|
+
minLength: 1,
|
|
109713
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
109714
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
109715
|
+
readOnly: true
|
|
108216
109716
|
}
|
|
108217
109717
|
},
|
|
108218
109718
|
title: "Common"
|
|
@@ -108549,6 +110049,13 @@ var schemas_default = {
|
|
|
108549
110049
|
],
|
|
108550
110050
|
additionalProperties: false,
|
|
108551
110051
|
title: "Source Location"
|
|
110052
|
+
},
|
|
110053
|
+
autoScreenshot: {
|
|
110054
|
+
type: "string",
|
|
110055
|
+
minLength: 1,
|
|
110056
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
110057
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
110058
|
+
readOnly: true
|
|
108552
110059
|
}
|
|
108553
110060
|
},
|
|
108554
110061
|
title: "Common"
|
|
@@ -108871,6 +110378,13 @@ var schemas_default = {
|
|
|
108871
110378
|
],
|
|
108872
110379
|
additionalProperties: false,
|
|
108873
110380
|
title: "Source Location"
|
|
110381
|
+
},
|
|
110382
|
+
autoScreenshot: {
|
|
110383
|
+
type: "string",
|
|
110384
|
+
minLength: 1,
|
|
110385
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
110386
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
110387
|
+
readOnly: true
|
|
108874
110388
|
}
|
|
108875
110389
|
},
|
|
108876
110390
|
title: "Common"
|
|
@@ -109215,6 +110729,13 @@ var schemas_default = {
|
|
|
109215
110729
|
],
|
|
109216
110730
|
additionalProperties: false,
|
|
109217
110731
|
title: "Source Location"
|
|
110732
|
+
},
|
|
110733
|
+
autoScreenshot: {
|
|
110734
|
+
type: "string",
|
|
110735
|
+
minLength: 1,
|
|
110736
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
110737
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
110738
|
+
readOnly: true
|
|
109218
110739
|
}
|
|
109219
110740
|
},
|
|
109220
110741
|
title: "Common"
|
|
@@ -110002,6 +111523,13 @@ var schemas_default = {
|
|
|
110002
111523
|
],
|
|
110003
111524
|
additionalProperties: false,
|
|
110004
111525
|
title: "Source Location"
|
|
111526
|
+
},
|
|
111527
|
+
autoScreenshot: {
|
|
111528
|
+
type: "string",
|
|
111529
|
+
minLength: 1,
|
|
111530
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
111531
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
111532
|
+
readOnly: true
|
|
110005
111533
|
}
|
|
110006
111534
|
},
|
|
110007
111535
|
title: "Common"
|
|
@@ -110347,6 +111875,13 @@ var schemas_default = {
|
|
|
110347
111875
|
],
|
|
110348
111876
|
additionalProperties: false,
|
|
110349
111877
|
title: "Source Location"
|
|
111878
|
+
},
|
|
111879
|
+
autoScreenshot: {
|
|
111880
|
+
type: "string",
|
|
111881
|
+
minLength: 1,
|
|
111882
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
111883
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
111884
|
+
readOnly: true
|
|
110350
111885
|
}
|
|
110351
111886
|
},
|
|
110352
111887
|
title: "Common"
|
|
@@ -110548,6 +112083,13 @@ var schemas_default = {
|
|
|
110548
112083
|
],
|
|
110549
112084
|
additionalProperties: false,
|
|
110550
112085
|
title: "Source Location"
|
|
112086
|
+
},
|
|
112087
|
+
autoScreenshot: {
|
|
112088
|
+
type: "string",
|
|
112089
|
+
minLength: 1,
|
|
112090
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
112091
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
112092
|
+
readOnly: true
|
|
110551
112093
|
}
|
|
110552
112094
|
},
|
|
110553
112095
|
title: "Common"
|
|
@@ -110660,6 +112202,13 @@ var schemas_default = {
|
|
|
110660
112202
|
],
|
|
110661
112203
|
additionalProperties: false,
|
|
110662
112204
|
title: "Source Location"
|
|
112205
|
+
},
|
|
112206
|
+
autoScreenshot: {
|
|
112207
|
+
type: "string",
|
|
112208
|
+
minLength: 1,
|
|
112209
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
112210
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
112211
|
+
readOnly: true
|
|
110663
112212
|
}
|
|
110664
112213
|
},
|
|
110665
112214
|
title: "Common"
|
|
@@ -110769,6 +112318,13 @@ var schemas_default = {
|
|
|
110769
112318
|
],
|
|
110770
112319
|
additionalProperties: false,
|
|
110771
112320
|
title: "Source Location"
|
|
112321
|
+
},
|
|
112322
|
+
autoScreenshot: {
|
|
112323
|
+
type: "string",
|
|
112324
|
+
minLength: 1,
|
|
112325
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
112326
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
112327
|
+
readOnly: true
|
|
110772
112328
|
}
|
|
110773
112329
|
},
|
|
110774
112330
|
title: "Common"
|
|
@@ -111365,6 +112921,13 @@ var schemas_default = {
|
|
|
111365
112921
|
],
|
|
111366
112922
|
additionalProperties: false,
|
|
111367
112923
|
title: "Source Location"
|
|
112924
|
+
},
|
|
112925
|
+
autoScreenshot: {
|
|
112926
|
+
type: "string",
|
|
112927
|
+
minLength: 1,
|
|
112928
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
112929
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
112930
|
+
readOnly: true
|
|
111368
112931
|
}
|
|
111369
112932
|
},
|
|
111370
112933
|
title: "Common"
|
|
@@ -111693,6 +113256,13 @@ var schemas_default = {
|
|
|
111693
113256
|
],
|
|
111694
113257
|
additionalProperties: false,
|
|
111695
113258
|
title: "Source Location"
|
|
113259
|
+
},
|
|
113260
|
+
autoScreenshot: {
|
|
113261
|
+
type: "string",
|
|
113262
|
+
minLength: 1,
|
|
113263
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
113264
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
113265
|
+
readOnly: true
|
|
111696
113266
|
}
|
|
111697
113267
|
},
|
|
111698
113268
|
title: "Common"
|
|
@@ -112487,6 +114057,13 @@ var schemas_default = {
|
|
|
112487
114057
|
],
|
|
112488
114058
|
additionalProperties: false,
|
|
112489
114059
|
title: "Source Location"
|
|
114060
|
+
},
|
|
114061
|
+
autoScreenshot: {
|
|
114062
|
+
type: "string",
|
|
114063
|
+
minLength: 1,
|
|
114064
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
114065
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
114066
|
+
readOnly: true
|
|
112490
114067
|
}
|
|
112491
114068
|
},
|
|
112492
114069
|
title: "Common"
|
|
@@ -112540,6 +114117,13 @@ var schemas_default = {
|
|
|
112540
114117
|
description: "Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.",
|
|
112541
114118
|
default: false
|
|
112542
114119
|
},
|
|
114120
|
+
autoScreenshot: {
|
|
114121
|
+
type: "string",
|
|
114122
|
+
minLength: 1,
|
|
114123
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
114124
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
114125
|
+
readOnly: true
|
|
114126
|
+
},
|
|
112543
114127
|
location: {
|
|
112544
114128
|
type: "object",
|
|
112545
114129
|
description: "Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.",
|
|
@@ -112657,6 +114241,13 @@ var schemas_default = {
|
|
|
112657
114241
|
],
|
|
112658
114242
|
additionalProperties: false,
|
|
112659
114243
|
title: "Source Location"
|
|
114244
|
+
},
|
|
114245
|
+
autoScreenshot: {
|
|
114246
|
+
type: "string",
|
|
114247
|
+
minLength: 1,
|
|
114248
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
114249
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
114250
|
+
readOnly: true
|
|
112660
114251
|
}
|
|
112661
114252
|
},
|
|
112662
114253
|
title: "Common"
|
|
@@ -112965,6 +114556,13 @@ var schemas_default = {
|
|
|
112965
114556
|
],
|
|
112966
114557
|
additionalProperties: false,
|
|
112967
114558
|
title: "Source Location"
|
|
114559
|
+
},
|
|
114560
|
+
autoScreenshot: {
|
|
114561
|
+
type: "string",
|
|
114562
|
+
minLength: 1,
|
|
114563
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
114564
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
114565
|
+
readOnly: true
|
|
112968
114566
|
}
|
|
112969
114567
|
},
|
|
112970
114568
|
title: "Common"
|
|
@@ -113317,6 +114915,13 @@ var schemas_default = {
|
|
|
113317
114915
|
],
|
|
113318
114916
|
additionalProperties: false,
|
|
113319
114917
|
title: "Source Location"
|
|
114918
|
+
},
|
|
114919
|
+
autoScreenshot: {
|
|
114920
|
+
type: "string",
|
|
114921
|
+
minLength: 1,
|
|
114922
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
114923
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
114924
|
+
readOnly: true
|
|
113320
114925
|
}
|
|
113321
114926
|
},
|
|
113322
114927
|
title: "Common"
|
|
@@ -114766,6 +116371,13 @@ var schemas_default = {
|
|
|
114766
116371
|
],
|
|
114767
116372
|
additionalProperties: false,
|
|
114768
116373
|
title: "Source Location"
|
|
116374
|
+
},
|
|
116375
|
+
autoScreenshot: {
|
|
116376
|
+
type: "string",
|
|
116377
|
+
minLength: 1,
|
|
116378
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
116379
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
116380
|
+
readOnly: true
|
|
114769
116381
|
}
|
|
114770
116382
|
},
|
|
114771
116383
|
title: "Common"
|
|
@@ -115308,6 +116920,13 @@ var schemas_default = {
|
|
|
115308
116920
|
],
|
|
115309
116921
|
additionalProperties: false,
|
|
115310
116922
|
title: "Source Location"
|
|
116923
|
+
},
|
|
116924
|
+
autoScreenshot: {
|
|
116925
|
+
type: "string",
|
|
116926
|
+
minLength: 1,
|
|
116927
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
116928
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
116929
|
+
readOnly: true
|
|
115311
116930
|
}
|
|
115312
116931
|
},
|
|
115313
116932
|
title: "Common"
|
|
@@ -116402,6 +118021,13 @@ var schemas_default = {
|
|
|
116402
118021
|
],
|
|
116403
118022
|
additionalProperties: false,
|
|
116404
118023
|
title: "Source Location"
|
|
118024
|
+
},
|
|
118025
|
+
autoScreenshot: {
|
|
118026
|
+
type: "string",
|
|
118027
|
+
minLength: 1,
|
|
118028
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
118029
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
118030
|
+
readOnly: true
|
|
116405
118031
|
}
|
|
116406
118032
|
},
|
|
116407
118033
|
title: "Common"
|
|
@@ -116738,6 +118364,13 @@ var schemas_default = {
|
|
|
116738
118364
|
],
|
|
116739
118365
|
additionalProperties: false,
|
|
116740
118366
|
title: "Source Location"
|
|
118367
|
+
},
|
|
118368
|
+
autoScreenshot: {
|
|
118369
|
+
type: "string",
|
|
118370
|
+
minLength: 1,
|
|
118371
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
118372
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
118373
|
+
readOnly: true
|
|
116741
118374
|
}
|
|
116742
118375
|
},
|
|
116743
118376
|
title: "Common"
|
|
@@ -117060,6 +118693,13 @@ var schemas_default = {
|
|
|
117060
118693
|
],
|
|
117061
118694
|
additionalProperties: false,
|
|
117062
118695
|
title: "Source Location"
|
|
118696
|
+
},
|
|
118697
|
+
autoScreenshot: {
|
|
118698
|
+
type: "string",
|
|
118699
|
+
minLength: 1,
|
|
118700
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
118701
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
118702
|
+
readOnly: true
|
|
117063
118703
|
}
|
|
117064
118704
|
},
|
|
117065
118705
|
title: "Common"
|
|
@@ -117404,6 +119044,13 @@ var schemas_default = {
|
|
|
117404
119044
|
],
|
|
117405
119045
|
additionalProperties: false,
|
|
117406
119046
|
title: "Source Location"
|
|
119047
|
+
},
|
|
119048
|
+
autoScreenshot: {
|
|
119049
|
+
type: "string",
|
|
119050
|
+
minLength: 1,
|
|
119051
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
119052
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
119053
|
+
readOnly: true
|
|
117407
119054
|
}
|
|
117408
119055
|
},
|
|
117409
119056
|
title: "Common"
|
|
@@ -118191,6 +119838,13 @@ var schemas_default = {
|
|
|
118191
119838
|
],
|
|
118192
119839
|
additionalProperties: false,
|
|
118193
119840
|
title: "Source Location"
|
|
119841
|
+
},
|
|
119842
|
+
autoScreenshot: {
|
|
119843
|
+
type: "string",
|
|
119844
|
+
minLength: 1,
|
|
119845
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
119846
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
119847
|
+
readOnly: true
|
|
118194
119848
|
}
|
|
118195
119849
|
},
|
|
118196
119850
|
title: "Common"
|
|
@@ -118536,6 +120190,13 @@ var schemas_default = {
|
|
|
118536
120190
|
],
|
|
118537
120191
|
additionalProperties: false,
|
|
118538
120192
|
title: "Source Location"
|
|
120193
|
+
},
|
|
120194
|
+
autoScreenshot: {
|
|
120195
|
+
type: "string",
|
|
120196
|
+
minLength: 1,
|
|
120197
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
120198
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
120199
|
+
readOnly: true
|
|
118539
120200
|
}
|
|
118540
120201
|
},
|
|
118541
120202
|
title: "Common"
|
|
@@ -118737,6 +120398,13 @@ var schemas_default = {
|
|
|
118737
120398
|
],
|
|
118738
120399
|
additionalProperties: false,
|
|
118739
120400
|
title: "Source Location"
|
|
120401
|
+
},
|
|
120402
|
+
autoScreenshot: {
|
|
120403
|
+
type: "string",
|
|
120404
|
+
minLength: 1,
|
|
120405
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
120406
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
120407
|
+
readOnly: true
|
|
118740
120408
|
}
|
|
118741
120409
|
},
|
|
118742
120410
|
title: "Common"
|
|
@@ -118849,6 +120517,13 @@ var schemas_default = {
|
|
|
118849
120517
|
],
|
|
118850
120518
|
additionalProperties: false,
|
|
118851
120519
|
title: "Source Location"
|
|
120520
|
+
},
|
|
120521
|
+
autoScreenshot: {
|
|
120522
|
+
type: "string",
|
|
120523
|
+
minLength: 1,
|
|
120524
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
120525
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
120526
|
+
readOnly: true
|
|
118852
120527
|
}
|
|
118853
120528
|
},
|
|
118854
120529
|
title: "Common"
|
|
@@ -118958,6 +120633,13 @@ var schemas_default = {
|
|
|
118958
120633
|
],
|
|
118959
120634
|
additionalProperties: false,
|
|
118960
120635
|
title: "Source Location"
|
|
120636
|
+
},
|
|
120637
|
+
autoScreenshot: {
|
|
120638
|
+
type: "string",
|
|
120639
|
+
minLength: 1,
|
|
120640
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
120641
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
120642
|
+
readOnly: true
|
|
118961
120643
|
}
|
|
118962
120644
|
},
|
|
118963
120645
|
title: "Common"
|
|
@@ -119554,6 +121236,13 @@ var schemas_default = {
|
|
|
119554
121236
|
],
|
|
119555
121237
|
additionalProperties: false,
|
|
119556
121238
|
title: "Source Location"
|
|
121239
|
+
},
|
|
121240
|
+
autoScreenshot: {
|
|
121241
|
+
type: "string",
|
|
121242
|
+
minLength: 1,
|
|
121243
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
121244
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
121245
|
+
readOnly: true
|
|
119557
121246
|
}
|
|
119558
121247
|
},
|
|
119559
121248
|
title: "Common"
|
|
@@ -119882,6 +121571,13 @@ var schemas_default = {
|
|
|
119882
121571
|
],
|
|
119883
121572
|
additionalProperties: false,
|
|
119884
121573
|
title: "Source Location"
|
|
121574
|
+
},
|
|
121575
|
+
autoScreenshot: {
|
|
121576
|
+
type: "string",
|
|
121577
|
+
minLength: 1,
|
|
121578
|
+
pattern: "^(?![A-Za-z]:|[\\\\/])[^\\\\]+$",
|
|
121579
|
+
description: "Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.",
|
|
121580
|
+
readOnly: true
|
|
119885
121581
|
}
|
|
119886
121582
|
},
|
|
119887
121583
|
title: "Common"
|
|
@@ -130378,15 +132074,34 @@ function safeRegExp(pattern, flags) {
|
|
|
130378
132074
|
return null;
|
|
130379
132075
|
}
|
|
130380
132076
|
}
|
|
130381
|
-
|
|
130382
|
-
|
|
130383
|
-
|
|
132077
|
+
var HASH_EXCLUDED_KEYS = /* @__PURE__ */ new Set([
|
|
132078
|
+
"location",
|
|
132079
|
+
"testId",
|
|
132080
|
+
"stepId",
|
|
132081
|
+
"contextId"
|
|
132082
|
+
]);
|
|
132083
|
+
function contentHash(value) {
|
|
132084
|
+
let input;
|
|
132085
|
+
if (typeof value === "string") {
|
|
132086
|
+
input = value;
|
|
132087
|
+
} else {
|
|
132088
|
+
try {
|
|
132089
|
+
input = JSON.stringify(value, (key, v) => HASH_EXCLUDED_KEYS.has(key) ? void 0 : v) ?? "";
|
|
132090
|
+
} catch {
|
|
132091
|
+
input = "";
|
|
132092
|
+
}
|
|
130384
132093
|
}
|
|
130385
|
-
|
|
130386
|
-
|
|
130387
|
-
|
|
130388
|
-
|
|
130389
|
-
}
|
|
132094
|
+
let hash = 2166136261;
|
|
132095
|
+
for (let i = 0; i < input.length; i++) {
|
|
132096
|
+
hash ^= input.charCodeAt(i);
|
|
132097
|
+
hash = Math.imul(hash, 16777619);
|
|
132098
|
+
}
|
|
132099
|
+
return (hash >>> 0).toString(16).padStart(8, "0");
|
|
132100
|
+
}
|
|
132101
|
+
function normalizePathForId(filePath) {
|
|
132102
|
+
if (!filePath)
|
|
132103
|
+
return "";
|
|
132104
|
+
return filePath.replace(/\\/g, "/").replace(/^\.\//, "").replace(/[^a-zA-Z0-9._/-]/g, "_");
|
|
130390
132105
|
}
|
|
130391
132106
|
function getLineStarts(content) {
|
|
130392
132107
|
const starts = [0];
|
|
@@ -130420,7 +132135,8 @@ async function detectTests(input) {
|
|
|
130420
132135
|
config: input.config,
|
|
130421
132136
|
content: input.content,
|
|
130422
132137
|
filePath: input.filePath,
|
|
130423
|
-
fileType: input.fileType
|
|
132138
|
+
fileType: input.fileType,
|
|
132139
|
+
testIdBase: input.testIdBase
|
|
130424
132140
|
});
|
|
130425
132141
|
}
|
|
130426
132142
|
function parseXmlAttributes({ stringifiedObject }) {
|
|
@@ -130579,7 +132295,7 @@ function replaceNumericVariables(stringOrObjectSource, values) {
|
|
|
130579
132295
|
}
|
|
130580
132296
|
return stringOrObject;
|
|
130581
132297
|
}
|
|
130582
|
-
async function parseContent({ config = {}, content, filePath = "", fileType }) {
|
|
132298
|
+
async function parseContent({ config = {}, content, filePath = "", fileType, testIdBase }) {
|
|
130583
132299
|
const statements = [];
|
|
130584
132300
|
const statementTypes = ["testStart", "testEnd", "ignoreStart", "ignoreEnd", "step"];
|
|
130585
132301
|
function findTest({ tests: tests2, testId: testId2 }) {
|
|
@@ -130647,7 +132363,15 @@ async function parseContent({ config = {}, content, filePath = "", fileType }) {
|
|
|
130647
132363
|
}
|
|
130648
132364
|
statements.sort((a, b) => a.sortIndex - b.sortIndex);
|
|
130649
132365
|
let tests = [];
|
|
130650
|
-
|
|
132366
|
+
const pendingTestIds = /* @__PURE__ */ new Set();
|
|
132367
|
+
let pendingCounter = 0;
|
|
132368
|
+
const pendingSalt = contentHash(content);
|
|
132369
|
+
const nextPendingTestId = () => {
|
|
132370
|
+
const id = `__dd-pending-${pendingSalt}-${++pendingCounter}`;
|
|
132371
|
+
pendingTestIds.add(id);
|
|
132372
|
+
return id;
|
|
132373
|
+
};
|
|
132374
|
+
let testId = nextPendingTestId();
|
|
130651
132375
|
let ignore = false;
|
|
130652
132376
|
statements.forEach((statement) => {
|
|
130653
132377
|
let test;
|
|
@@ -130692,7 +132416,7 @@ async function parseContent({ config = {}, content, filePath = "", fileType }) {
|
|
|
130692
132416
|
break;
|
|
130693
132417
|
}
|
|
130694
132418
|
case "testEnd":
|
|
130695
|
-
testId =
|
|
132419
|
+
testId = nextPendingTestId();
|
|
130696
132420
|
ignore = false;
|
|
130697
132421
|
break;
|
|
130698
132422
|
case "ignoreStart":
|
|
@@ -130831,6 +132555,20 @@ async function parseContent({ config = {}, content, filePath = "", fileType }) {
|
|
|
130831
132555
|
break;
|
|
130832
132556
|
}
|
|
130833
132557
|
});
|
|
132558
|
+
const usedTestIds = new Set(tests.filter((test) => test.testId && !pendingTestIds.has(test.testId)).map((test) => test.testId));
|
|
132559
|
+
const idBase = testIdBase || normalizePathForId(filePath) || "detected";
|
|
132560
|
+
tests.forEach((test) => {
|
|
132561
|
+
if (!test.testId || !pendingTestIds.has(test.testId))
|
|
132562
|
+
return;
|
|
132563
|
+
const baseId = `${idBase}~${contentHash(test)}`;
|
|
132564
|
+
let id = baseId;
|
|
132565
|
+
let suffix = 2;
|
|
132566
|
+
while (usedTestIds.has(id)) {
|
|
132567
|
+
id = `${baseId}-${suffix++}`;
|
|
132568
|
+
}
|
|
132569
|
+
usedTestIds.add(id);
|
|
132570
|
+
test.testId = id;
|
|
132571
|
+
});
|
|
130834
132572
|
if (filePath) {
|
|
130835
132573
|
tests.forEach((test) => {
|
|
130836
132574
|
test.contentPath = filePath;
|