api-client/tests/e2e/integration/app.starter.spec.js
2019-12-04 21:41:58 +05:30

7 lines
165 B
JavaScript

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