addedInput schema / $schema
Added value: +"https://json-schema.org/draft/2020-12/schema"
addedInput schema / additionalProperties
Added value: +false
addedInput schema / oneOf
Added value: +[
+ {
+ "additionalProperties": true,
+ "description": "Allowed option 1",
+ "properties": {
+ "action": {
+ "const": "discover"
+ },
+ "artifactPaths": {
+ "not": {}
+ },
+ "failFast": {
+ "not": {}
+ },
+ "timeoutSeconds": {
+ "not": {}
+ }
+ },
+ "required": [
+ "action"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": true,
+ "description": "Allowed option 2",
+ "properties": {
+ "action": {
+ "const": "run"
+ }
+ },
+ "required": [
+ "action"
+ ],
+ "type": "object"
+ }
+]
changedInput schema / properties / artifactPaths / description
Previous value: -"Project-relative report files to return as artifact metadata"New value: +"Project-relative report files to ret…"
changedInput schema / properties / failFast / description
Previous value: -"Stop native execution after the first failed file. Default: false"New value: +"Stop native execution after the firs…"
changedInput schema / properties / framework / description
Previous value: -"Test framework. Default: auto"New value: +"Test framework."
changedInput schema / properties / testPaths / description
Previous value: -"Project-relative test files or directories"New value: +"Project-relative test files or direc…"
changedInput schema / properties / timeoutSeconds / description
Previous value: -"Per-run timeout. Default: 60"New value: +"Per-run timeout."
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "oneOf": [
+ {
+ "not": {
+ "required": [
+ "error"
+ ]
+ },
+ "properties": {
+ "ok": {
+ "const": true
+ }
+ },
+ "required": [
+ "data"
+ ]
+ },
+ {
+ "not": {
+ "required": [
+ "data"
+ ]
+ },
+ "properties": {
+ "ok": {
+ "const": false
+ }
+ },
+ "required": [
+ "error"
+ ]
+ }
+ ],
+ "properties": {
+ "data": {},
+ "error": {
+ "type": "object"
+ },
+ "meta": {
+ "type": "object"
+ },
+ "ok": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "ok",
+ "meta"
+ ],
+ "type": "object"
+}