fix(test): remove .only from spec

This commit is contained in:
Phan An 2021-01-05 00:29:54 +01:00
parent 0eb6173dc3
commit f5970da4e3
2 changed files with 2 additions and 2 deletions

View file

@ -39,7 +39,7 @@ context('Sidebar Functionalities', () => {
})
})
it.only('does not have a YouTube item if YouTube is not used', () => {
it('does not have a YouTube item if YouTube is not used', () => {
cy.$login({ useYouTube: false })
cy.get('#sidebar')
.findByText('YouTube Video')

View file

@ -189,7 +189,7 @@ context('Song Context Menu', { scrollBehavior: false }, () => {
cy.findByTestId('song-context-menu').within(() => cy.findByText('Download').should('not.exist'))
})
it.only('does not have an Edit item if user is not an admin', () => {
it('does not have an Edit item if user is not an admin', () => {
cy.$loginAsNonAdmin()
cy.$clickSidebarItem('All Songs')