doc-detective-common 3.1.1-dev.2 → 3.1.1-dev.3
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/schemas/config_v3.schema.json +194 -0
- package/dist/schemas/report_v3.schema.json +170 -0
- package/dist/schemas/resolvedTests_v3.schema.json +364 -0
- package/dist/schemas/spec_v3.schema.json +170 -0
- package/dist/schemas/step_v3.schema.json +85 -0
- package/dist/schemas/test_v3.schema.json +170 -0
- package/package.json +1 -1
- package/src/schemas/build/config_v3.schema.json +24 -0
- package/src/schemas/build/step_v3.schema.json +18 -0
- package/src/schemas/output_schemas/config_v3.schema.json +194 -0
- package/src/schemas/output_schemas/report_v3.schema.json +170 -0
- package/src/schemas/output_schemas/resolvedTests_v3.schema.json +364 -0
- package/src/schemas/output_schemas/spec_v3.schema.json +170 -0
- package/src/schemas/output_schemas/step_v3.schema.json +85 -0
- package/src/schemas/output_schemas/test_v3.schema.json +170 -0
- package/src/schemas/schemas.json +1153 -0
- package/src/schemas/src_schemas/config_v3.schema.json +22 -0
- package/src/schemas/src_schemas/step_v3.schema.json +18 -0
|
@@ -236,6 +236,19 @@
|
|
|
236
236
|
},
|
|
237
237
|
"environment": {
|
|
238
238
|
"$ref": "#/components/schemas/environment"
|
|
239
|
+
},
|
|
240
|
+
"debug": {
|
|
241
|
+
"description": "Enable debugging mode. `true` allows pausing on breakpoints, waiting for user input before continuing. `stepThrough` pauses at every step, waiting for user input before continuing. `false` disables all debugging.",
|
|
242
|
+
"anyOf": [
|
|
243
|
+
{
|
|
244
|
+
"type": "boolean"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"type": "string",
|
|
248
|
+
"enum": ["stepThrough"]
|
|
249
|
+
}
|
|
250
|
+
],
|
|
251
|
+
"default": false
|
|
239
252
|
}
|
|
240
253
|
},
|
|
241
254
|
"components": {
|
|
@@ -467,6 +480,15 @@
|
|
|
467
480
|
},
|
|
468
481
|
{
|
|
469
482
|
"concurrentRunners": 4
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"debug": false
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"debug": true
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"debug": "stepThrough"
|
|
470
492
|
}
|
|
471
493
|
]
|
|
472
494
|
}
|
|
@@ -28,6 +28,9 @@
|
|
|
28
28
|
},
|
|
29
29
|
"variables": {
|
|
30
30
|
"$ref": "#/components/schemas/variables"
|
|
31
|
+
},
|
|
32
|
+
"breakpoint": {
|
|
33
|
+
"$ref": "#/components/schemas/breakpoint"
|
|
31
34
|
}
|
|
32
35
|
},
|
|
33
36
|
"title": "Common"
|
|
@@ -75,6 +78,11 @@
|
|
|
75
78
|
}
|
|
76
79
|
},
|
|
77
80
|
"title": "Variables (step)"
|
|
81
|
+
},
|
|
82
|
+
"breakpoint": {
|
|
83
|
+
"type": "boolean",
|
|
84
|
+
"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.",
|
|
85
|
+
"default": false
|
|
78
86
|
}
|
|
79
87
|
}
|
|
80
88
|
},
|
|
@@ -527,6 +535,16 @@
|
|
|
527
535
|
"httpRequest": {
|
|
528
536
|
"$ref": "httpRequest_v3.schema.json#/examples/11"
|
|
529
537
|
}
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"stepId": "breakpoint-example",
|
|
541
|
+
"description": "Step with breakpoint enabled",
|
|
542
|
+
"goTo": "https://www.example.com",
|
|
543
|
+
"breakpoint": true
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"checkLink": "https://www.google.com",
|
|
547
|
+
"breakpoint": false
|
|
530
548
|
}
|
|
531
549
|
]
|
|
532
550
|
}
|