2022-07-10 16:12:04 +00:00
|
|
|
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', () => {
|
2022-09-12 15:33:41 +00:00
|
|
|
overviewStore.state.mostPlayedArtists = factory<Artist>('artist', 6)
|
2022-10-23 17:52:07 +00:00
|
|
|
expect(this.render(MostPlayedArtists, {
|
|
|
|
global: {
|
|
|
|
stubs: {
|
|
|
|
ArtistCard: this.stub('artist-card')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).getAllByTestId('artist-card')).toHaveLength(6)
|
2022-07-10 16:12:04 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|