From 02b30c16ec6831944474463fd8f53ed70bb460a1 Mon Sep 17 00:00:00 2001 From: Jonathan Grynspan Date: Thu, 24 Oct 2024 11:31:44 -0400 Subject: [PATCH] Don't change JSON schema until the feature is approved (experimental only) --- Documentation/ABI/JSON.md | 6 +++--- Sources/Testing/ABI/v0/Encoded/ABIv0.EncodedEvent.swift | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Documentation/ABI/JSON.md b/Documentation/ABI/JSON.md index 571376ef0..23dd5b1dc 100644 --- a/Documentation/ABI/JSON.md +++ b/Documentation/ABI/JSON.md @@ -193,8 +193,8 @@ sufficient information to display the event in a human-readable format. } ::= "runStarted" | "testStarted" | "testCaseStarted" | - "issueRecorded" | "valueAttached" | "testCaseEnded" | "testEnded" | - "testSkipped" | "runEnded" ; additional event kinds may be added in the future + "issueRecorded" | "testCaseEnded" | "testEnded" | "testSkipped" | + "runEnded" ; additional event kinds may be added in the future ::= { "isKnown": , ; is this a known issue or not? @@ -207,7 +207,7 @@ sufficient information to display the event in a human-readable format. } ::= "default" | "skip" | "pass" | "passWithKnownIssue" | - "fail" | "difference" | "warning" | "details" | "attachment" + "fail" | "difference" | "warning" | "details" ```