mirror of
https://github.com/koel/koel
synced 2024-12-03 17:29:33 +00:00
30 lines
1,010 B
TypeScript
30 lines
1,010 B
TypeScript
import { it } from 'vitest'
|
|
import { playlistStore } from '@/stores'
|
|
import factory from '@/__tests__/factory'
|
|
import PlaylistSidebarList from './PlaylistSidebarList.vue'
|
|
import PlaylistSidebarItem from './PlaylistSidebarItem.vue'
|
|
import ComponentTestCase from '@/__tests__/ComponentTestCase'
|
|
|
|
new class extends ComponentTestCase {
|
|
protected test () {
|
|
it('renders all playlists', () => {
|
|
playlistStore.state.playlists = [
|
|
factory<Playlist>('playlist', { name: 'Foo Playlist' }),
|
|
factory<Playlist>('playlist', { name: 'Bar Playlist' }),
|
|
factory<Playlist>('playlist', { name: 'Smart Playlist', is_smart: true })
|
|
]
|
|
|
|
const { getByText } = this.render(PlaylistSidebarList, {
|
|
global: {
|
|
stubs: {
|
|
PlaylistSidebarItem
|
|
}
|
|
}
|
|
})
|
|
|
|
;['Favorites', 'Recently Played', 'Foo Playlist', 'Bar Playlist', 'Smart Playlist'].forEach(t => getByText(t))
|
|
})
|
|
|
|
// other functionalities are handled by E2E
|
|
}
|
|
}
|