mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
15 lines
503 B
TypeScript
15 lines
503 B
TypeScript
|
import { expect, it } from 'vitest'
|
||
|
import { overviewStore } from '@/stores'
|
||
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
||
|
import factory from '@/__tests__/factory'
|
||
|
import MostPlayedArtists from './MostPlayedArtists.vue'
|
||
|
|
||
|
new class extends UnitTestCase {
|
||
|
protected test () {
|
||
|
it('displays the artists', () => {
|
||
|
overviewStore.state.mostPlayedArtists = factory<Artist[]>('artist', 6)
|
||
|
expect(this.render(MostPlayedArtists).getAllByTestId('artist-card')).toHaveLength(6)
|
||
|
})
|
||
|
}
|
||
|
}
|