Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
BlockEditorScreen - Remove assertion within undo/redo
  • Loading branch information
Gerardo committed Jul 6, 2023
commit ce5d63754b3a26091176e73640bea72e5720326c
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,6 @@ public class BlockEditorScreen: ScreenObject {

@discardableResult
public func undo() throws -> BlockEditorScreen {
XCTAssertTrue(undoButton.waitForIsHittable(timeout: 3))
undoButton.tap()

return try BlockEditorScreen()
Expand All @@ -263,7 +262,6 @@ public class BlockEditorScreen: ScreenObject {

@discardableResult
public func redo() throws -> BlockEditorScreen {
XCTAssertTrue(redoButton.waitForIsHittable(timeout: 3))
redoButton.tap()

return try BlockEditorScreen()
Expand Down