mirror of
https://github.com/abhinavxd/libredesk.git
synced 2025-10-23 05:11:57 +00:00
9 lines
167 B
JavaScript
9 lines
167 B
JavaScript
// https://on.cypress.io/api
|
|
|
|
describe('My First Test', () => {
|
|
it('visits the app root url', () => {
|
|
cy.visit('/')
|
|
cy.contains('h1', 'You did it!')
|
|
})
|
|
})
|