8 lines
202 B
JavaScript
8 lines
202 B
JavaScript
describe("Visit home", () => {
|
|
it('Have a page title with "Postwoman"', () => {
|
|
cy.visit("/", { retryOnStatusCodeFailure: true })
|
|
.get("title")
|
|
.should("contain", "Postwoman")
|
|
})
|
|
})
|