api-client/tests/e2e/integration/app.starter.spec.js

8 lines
202 B
JavaScript
Raw Normal View History

describe("Visit home", () => {
2019-12-04 16:11:58 +00:00
it('Have a page title with "Postwoman"', () => {
cy.visit("/", { retryOnStatusCodeFailure: true })
.get("title")
.should("contain", "Postwoman")
2019-12-04 16:11:58 +00:00
})
})