func testTapToZoom()

in HostApp/HostAppUITests/AMLMapViewScreen.swift [26:35]


    func testTapToZoom() -> Self {
        let mapView = app.otherElements[Identifiers.mapView]
        // Default starting zoom
        XCTAssertEqual(mapView.value as? String, "Zoom 15x")
        // Zoom in
        mapView.doubleTap()
        // Zoom value updated
        XCTAssertEqual(mapView.value as? String, "Zoom 16x")
        return self
    }