mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-24 10:32:46 +02:00
test improvement
This commit is contained in:
@@ -53,7 +53,7 @@ final class ComposerUITests: MockScreenTestCase {
|
||||
let wysiwygTextView = app.textViews.allElementsBoundByIndex[0]
|
||||
XCTAssertTrue(wysiwygTextView.exists)
|
||||
wysiwygTextView.tap()
|
||||
sleep(2)
|
||||
sleep(1)
|
||||
wysiwygTextView.typeText(text)
|
||||
let options = XCTExpectedFailure.Options()
|
||||
options.isStrict = false
|
||||
@@ -62,20 +62,16 @@ final class ComposerUITests: MockScreenTestCase {
|
||||
XCTAssert(value == text, "Text view value is: \(value ?? "nil")")
|
||||
}
|
||||
|
||||
// This test requires "connect hardware keyboard" to be off on the simulator
|
||||
// And may not work on the CI
|
||||
func testLongPressDelete() throws {
|
||||
app.goToScreenWithIdentifier(MockComposerScreenState.send.title)
|
||||
let text = "test1 test2 test3 test4 test5 test6 test7"
|
||||
let wysiwygTextView = app.textViews.allElementsBoundByIndex[0]
|
||||
XCTAssertTrue(wysiwygTextView.exists)
|
||||
wysiwygTextView.tap()
|
||||
sleep(2)
|
||||
sleep(1)
|
||||
wysiwygTextView.typeText(text)
|
||||
sleep(1)
|
||||
app.keys["delete"].press(forDuration: 10.0)
|
||||
let options = XCTExpectedFailure.Options()
|
||||
options.isStrict = false
|
||||
XCTExpectFailure("Test may fail on CI", options: options)
|
||||
let value = wysiwygTextView.value as? String
|
||||
XCTAssert(value == "", "Text view value is: \(value ?? "nil")")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user