Files
hoppscotch/tests/e2e/integration/app.starter.spec.js
Liyas Thomas 0ac01fe8e5 Updated test
2019-11-27 20:15:47 +05:30

8 lines
160 B
JavaScript

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