Files
web-antrean/cypress/e2e/login.cy.ts
T
2026-02-03 15:11:55 +07:00

8 lines
219 B
TypeScript

describe('Login Page', () => {
it('should load the login page', () => {
cy.visit('/')
// Adjust this to match a selector on your home or login page
cy.contains('h1', /login/i).should('be.visible')
})
})