koel/resources/assets/js/components/screens/home/MostPlayedArtists.spec.ts

14 lines
501 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)
})
}
}