32 lines
946 B
TypeScript
32 lines
946 B
TypeScript
describe('Favorites', () => {
|
|
it('can be done from album list view', () => {
|
|
// First we need to login
|
|
cy.login()
|
|
|
|
// Then we can visit the home page
|
|
cy.visit('/')
|
|
|
|
cy.get('.item.collapse-button-wrapper').click()
|
|
cy.contains('Albums').click({ force: true })
|
|
|
|
cy.get('.component-album-card').first().within(() => {
|
|
cy.get('a').first().click()
|
|
})
|
|
|
|
cy.get('.track-row.row').first().trigger('hover').within(() => {
|
|
cy.get('.favorite-icon').then(($favButton) => {
|
|
$favButton.click()
|
|
// In case everything worked the favorite button should be pink
|
|
cy.wrap($favButton).should('have.class', 'pink')
|
|
})
|
|
|
|
cy.get('.favorite-icon.pink').then(($unfavButton) => {
|
|
$unfavButton.click()
|
|
// In case everything worked the favorite button shouldn't be pink
|
|
// anymore
|
|
cy.wrap($unfavButton).should('not.have.class', 'pink')
|
|
})
|
|
})
|
|
})
|
|
})
|