Skip to content

Instantly share code, notes, and snippets.

@mathonsunday
Last active April 23, 2021 01:36

Revisions

  1. mathonsunday revised this gist Apr 23, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion maxZoomLevel.swift
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    func testShowPinsAtMaxZoomLevel() {
    XCTContext.runActivity(id: 3352275, named: "Always show pins at the max zoom level") { _ in
    XCTContext.runActivity(named: "Always show pins at the max zoom level") { _ in
    CompassLauncher().account(.nycAgent).launch().verifyMore()
    TabBarBot()
    .search()
  2. mathonsunday revised this gist Apr 23, 2021. 1 changed file with 1 addition and 2 deletions.
    3 changes: 1 addition & 2 deletions maxZoomLevel.swift
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,5 @@
    func testShowPinsAtMaxZoomLevel() {
    XCTContext.runActivity(id: 3352275,
    named: "Map Validation Pin: Always show pins at the max zoom level") { _ in
    XCTContext.runActivity(id: 3352275, named: "Always show pins at the max zoom level") { _ in
    CompassLauncher().account(.nycAgent).launch().verifyMore()
    TabBarBot()
    .search()
  3. mathonsunday revised this gist Apr 23, 2021. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion maxZoomLevel.swift
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,6 @@
    func testShowPinsAtMaxZoomLevel() {
    XCTContext.runActivity(id: 3352275, named: "Map Validation Pin: Always show pins at the max zoom level") { _ in
    XCTContext.runActivity(id: 3352275,
    named: "Map Validation Pin: Always show pins at the max zoom level") { _ in
    CompassLauncher().account(.nycAgent).launch().verifyMore()
    TabBarBot()
    .search()
  4. mathonsunday created this gist Apr 22, 2021.
    17 changes: 17 additions & 0 deletions maxZoomLevel.swift
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    func testShowPinsAtMaxZoomLevel() {
    XCTContext.runActivity(id: 3352275, named: "Map Validation Pin: 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)
    }
    }