Merge pull request #4875 from Budibase/cypress-testing
Updating REST Test
This commit is contained in:
commit
baa46e5251
|
@ -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)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue