Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Unified Diff: json_reporter.schema.json

Issue 2099503002: Add a dedicated Result for skipped tests. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Code review changes Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « doc/json_reporter.md ('k') | lib/src/backend/invoker.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: json_reporter.schema.json
diff --git a/json_reporter.schema.json b/json_reporter.schema.json
index b34006231ebdce9bf7c672de55723f73c75f1496..495989e55d3c0936e86c7b7f1026f7c48557dc32 100644
--- a/json_reporter.schema.json
+++ b/json_reporter.schema.json
@@ -165,12 +165,13 @@
{
"title": "TestDoneEvent",
- "required": ["testID", "result", "hidden"],
+ "required": ["testID", "result", "hidden", "skipped"],
"properties": {
"type": {"enum": ["testDone"]},
"testID": {"type": "integer", "minimum": 0},
"result": {"type": "string", "enum": ["success", "failure", "error"]},
- "hidden": {"type": "boolean"}
+ "hidden": {"type": "boolean"},
+ "skipped": {"type": "boolean"}
}
},
« no previous file with comments | « doc/json_reporter.md ('k') | lib/src/backend/invoker.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698