Last active
April 23, 2021 01:36
-
-
Save mathonsunday/ddbdfcc8dc0652d406e5997eb76790a2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func testShowPinsAtMaxZoomLevel() { | |
XCTContext.runActivity(named: "Always show pins at the max zoom level") { _ in | |
CompassLauncher().account(.nycAgent).launch().verifyMore() | |
TabBarBot() | |
.search() | |
.tap(.searchBarTextField) | |
.enterText("East Village") | |
SearchSuggestBot() | |
.tap(.neighborhood) | |
MapBot() | |
.assert(hasClusters: true) | |
.assert(hasPricePins: false) | |
.zoomIn(scale: 10) | |
.assert(hasClusters: false) | |
.assert(hasPricePins: true) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment