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

8 lines
165 B
JavaScript
Raw Normal View History

2019-10-04 00:47:41 +00:00
describe('Visit home', () => {
it('Have a page title with "Postwoman"', () => {
cy.visit('/')
.get('title')
.should('contain','Postwoman')
})
})