mirror of
https://github.com/koel/koel
synced 2024-11-29 07:20:29 +00:00
20 lines
610 B
TypeScript
20 lines
610 B
TypeScript
import { expect, it } from 'vitest'
|
|
import { overviewStore } from '@/stores'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import factory from '@/__tests__/factory'
|
|
import MostPlayedAlbums from './MostPlayedAlbums.vue'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('displays the albums', () => {
|
|
overviewStore.state.mostPlayedAlbums = factory<Album>('album', 6)
|
|
expect(this.render(MostPlayedAlbums, {
|
|
global: {
|
|
stubs: {
|
|
AlbumCard: this.stub('album-card')
|
|
}
|
|
}
|
|
}).getAllByTestId('album-card')).toHaveLength(6)
|
|
})
|
|
}
|
|
}
|