Skip to content

Commit f732e80

Browse files
committed
testElementsVisible
1 parent bce9fe2 commit f732e80

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
//
2+
// SwiftSampleAppUITest.swift
3+
// SwiftSampleAppUITest
4+
//
5+
// Created by Justin Yu on 12/4/23.
6+
// Copyright © 2023 Iterable. All rights reserved.
7+
//
8+
9+
import XCTest
10+
11+
final class SwiftSampleAppUITest: XCUITestBase {
12+
func testElementsVisible() {
13+
let app = XCUIApplication()
14+
15+
XCTAssertTrue(app.staticTexts["Coffees"].exists)
16+
}
17+
}

0 commit comments

Comments
 (0)