Files
nssheung/School-Management-System/test/E2E/cypress/e2e/helloworld/login-logout.cy.js
louiscklaw 6da7dca3e7 update,
2025-02-01 02:04:37 +08:00

22 lines
383 B
JavaScript

Cypress.on('uncaught:exception', (err, runnable) => {
// returning false here prevents Cypress from
// failing the test
return false
})
describe('example to-do app', () => {
beforeEach(() => {
cy.visit('http://localhost:8000/sign-in')
})
it('can login and logout', () => {
cy.get('.btn').click()
cy.wait(1000)
cy.get('.d-sm-inline').click()
})
})