@@ -185,11 +185,11 @@ public struct Configuration: Sendable {
185
185
/// containing issues with warning (or lower) severity should be delivered
186
186
/// to the event handler of the configuration these options are applied to.
187
187
///
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
193
193
194
194
/// Whether or not events of the kind
195
195
/// ``Event/Kind-swift.enum/expectationChecked(_:)`` should be delivered to
@@ -198,7 +198,7 @@ public struct Configuration: Sendable {
198
198
/// By default, events of this kind are not delivered to event handlers
199
199
/// because they occur frequently in a typical test run and can generate
200
200
/// significant back-pressure on the event handler.
201
- public var isExpectationCheckedEventDeliveryEnabled : Bool = false
201
+ public var isExpectationCheckedEventEnabled : Bool = false
202
202
}
203
203
204
204
/// The options to use when delivering events to this configuration's event
@@ -347,13 +347,13 @@ extension Configuration {
347
347
}
348
348
#endif
349
349
350
- @available ( * , deprecated, message: " Set eventHandlingOptions.isExpectationCheckedEventDeliveryEnabled instead. " )
350
+ @available ( * , deprecated, message: " Set eventHandlingOptions.isExpectationCheckedEventEnabled instead. " )
351
351
public var deliverExpectationCheckedEvents : Bool {
352
352
get {
353
- eventHandlingOptions. isExpectationCheckedEventDeliveryEnabled
353
+ eventHandlingOptions. isExpectationCheckedEventEnabled
354
354
}
355
355
set {
356
- eventHandlingOptions. isExpectationCheckedEventDeliveryEnabled = newValue
356
+ eventHandlingOptions. isExpectationCheckedEventEnabled = newValue
357
357
}
358
358
}
359
359
}
0 commit comments