Files
hoppscotch/tests/e2e/integration/app.starter.spec.js
Liyas Thomas a719dff1f7 Updating tests
2019-12-04 21:41:58 +05:30

8 lines
165 B
JavaScript

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