mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
20 lines
600 B
TypeScript
20 lines
600 B
TypeScript
import { expect, it } from 'vitest'
|
|
import { overviewStore } from '@/stores'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import factory from '@/__tests__/factory'
|
|
import MostPlayedSongs from './MostPlayedSongs.vue'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('displays the songs', () => {
|
|
overviewStore.state.mostPlayedSongs = factory<Song>('song', 6)
|
|
expect(this.render(MostPlayedSongs, {
|
|
global: {
|
|
stubs: {
|
|
SongCard: this.stub('song-card')
|
|
}
|
|
}
|
|
}).getAllByTestId('song-card')).toHaveLength(6)
|
|
})
|
|
}
|
|
}
|