koel/resources/assets/js/components/screens/home/MostPlayedArtists.spec.ts
2024-07-06 17:45:07 +02:00

20 lines
612 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', 6)
expect(this.render(MostPlayedArtists, {
global: {
stubs: {
ArtistCard: this.stub('artist-card')
}
}
}).getAllByTestId('artist-card')).toHaveLength(6)
})
}
}