9 lines
231 B
Swift
9 lines
231 B
Swift
import XCTest
|
|
|
|
final class SimpleLoginTest: BaseUITestCase {
|
|
func testSimpleLoginEntryRenders() {
|
|
let login = TestFlows.navigateToLoginFromOnboarding(app: app)
|
|
login.waitForLoad(timeout: defaultTimeout)
|
|
}
|
|
}
|