mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
fix(test): remove .only from spec
This commit is contained in:
parent
0eb6173dc3
commit
f5970da4e3
2 changed files with 2 additions and 2 deletions
|
@ -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')
|
||||
|
|
|
@ -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')
|
||||
|
||||
|
|
Loading…
Reference in a new issue