Files
libredesk/frontend/cypress/e2e/example.cy.js
Abhinav Raut edab73a8fa starting again
2024-05-25 11:49:41 +05:30

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!')
})
})