mirror of
https://github.com/koel/koel
synced 2024-11-14 00:17:13 +00:00
11 lines
No EOL
281 B
JavaScript
11 lines
No EOL
281 B
JavaScript
describe('remote', () => {
|
|
it('requires login', () => {
|
|
cy.visit('/remote')
|
|
cy.get('[data-cy=loginForm]').should('be.visible')
|
|
})
|
|
|
|
it('logs in with valid username and password', () => {
|
|
cy.login('/remote')
|
|
cy.get('[data-cy=main]').should('be.visible')
|
|
})
|
|
}) |