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