Fix replying in UI tests. (#1792)

This commit is contained in:
Doug 2023-09-25 11:12:59 +01:00 committed by GitHub
parent 356a3167f0
commit 2a6cf390d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View File

@ -75,16 +75,15 @@ struct SwipeRightAction<Label: View>: ViewModifier {
}
xOffset = 0.0
}
)
.onChange(of: dragGestureActive, perform: { value in
})
.onChange(of: dragGestureActive) { value in
if value == true {
if shouldStartAction() {
feedbackGenerator.prepare()
canStartAction = true
}
}
})
}
.overlay(alignment: .leading) {
// We want the action icon to follow the view translation and gradually fade in
label()

View File

@ -34,7 +34,7 @@ struct TimelineItemIdentifier: Hashable {
extension TimelineItemIdentifier {
/// Use only for mocks/tests
static var random: Self {
.init(timelineID: UUID().uuidString)
.init(timelineID: UUID().uuidString, eventID: UUID().uuidString)
}
}