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

6 lines
188 B
JavaScript
Raw Normal View History

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