summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/test_case.json
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/entities/test_case.json')
-rw-r--r--spec/fixtures/api/schemas/entities/test_case.json8
1 files changed, 7 insertions, 1 deletions
diff --git a/spec/fixtures/api/schemas/entities/test_case.json b/spec/fixtures/api/schemas/entities/test_case.json
index d731d7eed0a..483fa881f8c 100644
--- a/spec/fixtures/api/schemas/entities/test_case.json
+++ b/spec/fixtures/api/schemas/entities/test_case.json
@@ -12,7 +12,13 @@
"execution_time": { "type": "float" },
"system_output": { "type": ["string", "null"] },
"stack_trace": { "type": ["string", "null"] },
- "attachment_url": { "type": ["string", "null"] }
+ "attachment_url": { "type": ["string", "null"] },
+ "recent_failures": {
+ "oneOf": [
+ { "type": "null" },
+ { "$ref": "test_case/recent_failures.json" }
+ ]
+ }
},
"additionalProperties": false
}