1
0
Fork 0
mirror of synced 2024-09-08 21:51:58 +12:00

Merge remote-tracking branch 'origin/develop' into feature/map-component

This commit is contained in:
Dean 2022-03-10 14:25:38 +00:00
commit cdcc3ce1bd

View file

@ -36,10 +36,12 @@ filterTests(["smoke", "all"], () => {
// createRestQuery confirms query creation // createRestQuery confirms query creation
cy.createRestQuery("GET", restUrl, "/breweries") cy.createRestQuery("GET", restUrl, "/breweries")
// Confirm status code response within REST datasource // Confirm status code response within REST datasource
cy.get(".spectrum-FieldLabel") cy.wait(1000)
.contains("Status") cy.get(".stats").within(() => {
.children() cy.get(".spectrum-FieldLabel")
.eq(0)
.should("contain", 200) .should("contain", 200)
})
}) })
}) })
}) })