Skip to content

Commit

Permalink
fix: reporters v1 api schema (#916)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexplischke authored Jun 3, 2024
1 parent a810c98 commit 6c418d4
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
12 changes: 11 additions & 1 deletion api/saucectl.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,17 @@
"filename": {
"description": "Filename for the generated JSON report.",
"type": "string",
"default": "saucectl-test-result.xml"
"default": "saucectl-report.json"
}
}
},
"spotlight": {
"type": "object",
"description": "The spotlight reporter prints an overview of failed, or otherwise interesting, jobs.",
"properties": {
"enabled": {
"description": "Toggles the reporter on/off.",
"type": "boolean"
}
}
}
Expand Down
12 changes: 11 additions & 1 deletion api/v1/subschema/reporters.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,17 @@
"filename": {
"description": "Filename for the generated JSON report.",
"type": "string",
"default": "saucectl-test-result.xml"
"default": "saucectl-report.json"
}
}
},
"spotlight": {
"type": "object",
"description": "The spotlight reporter prints an overview of failed, or otherwise interesting, jobs.",
"properties": {
"enabled": {
"description": "Toggles the reporter on/off.",
"type": "boolean"
}
}
}
Expand Down

0 comments on commit 6c418d4

Please sign in to comment.