mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
34 lines
825 B
TypeScript
34 lines
825 B
TypeScript
context('Settings', () => {
|
|
beforeEach(() => {
|
|
cy.$login()
|
|
cy.$clickSidebarItem('Settings')
|
|
cy.intercept('PUT', '/api/settings', {}).as('save')
|
|
})
|
|
|
|
it('rescans media', () => {
|
|
cy.get('#settingsWrapper').within(() => {
|
|
cy.get('.screen-header')
|
|
.should('be.visible')
|
|
.and('contain.text', 'Settings')
|
|
|
|
cy.get('[name=media_path]').should('have.value', '/media/koel/')
|
|
cy.get('[type=submit]').click()
|
|
})
|
|
|
|
cy.wait('@save')
|
|
})
|
|
|
|
it('confirms before rescanning if media path is changed', () => {
|
|
cy.get('#settingsWrapper').within(() => {
|
|
cy.get('[name=media_path]')
|
|
.should('have.value', '/media/koel/')
|
|
.clear()
|
|
.type('/var/media/koel')
|
|
|
|
cy.get('[type=submit]').click()
|
|
})
|
|
|
|
cy.$confirm()
|
|
cy.wait('@save')
|
|
})
|
|
})
|