@@ -185,11 +185,11 @@ public struct Configuration: Sendable {
185185 /// containing issues with warning (or lower) severity should be delivered
186186 /// to the event handler of the configuration these options are applied to.
187187 ///
188- /// By default, events matching this criteria are delivered to event
189- /// handlers unless the entry point specifies an event stream version which
190- /// predates the introduction of warning issues, in which case this is
191- /// disabled to maintain legacy behavior .
192- public var isWarningIssueEventDeliveryEnabled : Bool = true
188+ /// By default, events matching this criteria are not delivered to event
189+ /// handlers since this is an experimental feature.
190+ ///
191+ /// - Warning: Warning issues are not yet an approved feature .
192+ public var isWarningIssueRecordedEventEnabled : Bool = false
193193
194194 /// Whether or not events of the kind
195195 /// ``Event/Kind-swift.enum/expectationChecked(_:)`` should be delivered to
@@ -198,7 +198,7 @@ public struct Configuration: Sendable {
198198 /// By default, events of this kind are not delivered to event handlers
199199 /// because they occur frequently in a typical test run and can generate
200200 /// significant back-pressure on the event handler.
201- public var isExpectationCheckedEventDeliveryEnabled : Bool = false
201+ public var isExpectationCheckedEventEnabled : Bool = false
202202 }
203203
204204 /// The options to use when delivering events to this configuration's event
@@ -347,13 +347,13 @@ extension Configuration {
347347 }
348348#endif
349349
350- @available ( * , deprecated, message: " Set eventHandlingOptions.isExpectationCheckedEventDeliveryEnabled instead. " )
350+ @available ( * , deprecated, message: " Set eventHandlingOptions.isExpectationCheckedEventEnabled instead. " )
351351 public var deliverExpectationCheckedEvents : Bool {
352352 get {
353- eventHandlingOptions. isExpectationCheckedEventDeliveryEnabled
353+ eventHandlingOptions. isExpectationCheckedEventEnabled
354354 }
355355 set {
356- eventHandlingOptions. isExpectationCheckedEventDeliveryEnabled = newValue
356+ eventHandlingOptions. isExpectationCheckedEventEnabled = newValue
357357 }
358358 }
359359}
0 commit comments