Skip to content

Commit

Permalink
test: fix cypress lat long error (#3746)
Browse files Browse the repository at this point in the history
  • Loading branch information
emilyjablonski authored Dec 5, 2023
1 parent e7af533 commit 8751c6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sites/partners/cypress/e2e/default/03-listing.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ describe("Listing Management Tests", () => {
cy.getByID("buildingAddress.state").contains("CA")
cy.getByID("buildingAddress.zipCode").contains(listing["buildingAddress.zipCode"])
cy.getByID("yearBuilt").contains(listing["yearBuilt"])
cy.getByID("longitude").contains("-122.40078")
cy.getByID("latitude").contains("37.79006")
cy.getByID("longitude").should("include.text", "-122.4")
cy.getByID("latitude").should("include.text", "37.7")
cy.getByID("reservedCommunityType").contains(listing["reservedCommunityType.id"])
cy.getByID("reservedCommunityDescription").contains(listing["reservedCommunityDescription"])
cy.getByTestId("unit-types-or-individual").contains("Unit Types")
Expand Down

0 comments on commit 8751c6e

Please sign in to comment.