mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-12 15:25:59 +00:00
34 lines
816 B
TypeScript
34 lines
816 B
TypeScript
/// <reference types="cypress" />
|
|
|
|
describe('Utopia Map Login Form Elements', () => {
|
|
|
|
beforeEach(() => {
|
|
cy.clearCookies()
|
|
cy.clearLocalStorage()
|
|
cy.window().then((win) => {
|
|
win.sessionStorage.clear()
|
|
})
|
|
|
|
cy.visit('/login')
|
|
})
|
|
|
|
it('should be displayed correctly', () => {
|
|
cy.get('h2').should('contain.text', 'Login')
|
|
cy.get('input[type="email"]')
|
|
.should('be.visible')
|
|
.should('have.attr', 'placeholder', 'E-Mail')
|
|
|
|
cy.get('input[type="password"]')
|
|
.should('be.visible')
|
|
.should('have.attr', 'placeholder', 'Password')
|
|
|
|
cy.get('button:contains("Login")')
|
|
.should('be.visible')
|
|
.should('not.be.disabled')
|
|
|
|
cy.get('a[href="/reset-password"]')
|
|
.should('be.visible')
|
|
.should('contain.text', 'Forgot Password?')
|
|
})
|
|
})
|