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 RecentlyAddedSongs from './RecentlyAddedSongs.vue'
|
|
|
|
|
|
|
|
new class extends UnitTestCase {
|
|
|
|
protected test () {
|
|
|
|
it('displays the songs', () => {
|
2022-09-12 15:33:41 +00:00
|
|
|
overviewStore.state.recentlyAddedSongs = factory<Song>('song', 6)
|
2022-11-29 10:18:58 +00:00
|
|
|
expect(this.render(RecentlyAddedSongs, {
|
|
|
|
global: {
|
|
|
|
stubs: {
|
|
|
|
SongCard: this.stub('song-card')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).getAllByTestId('song-card')).toHaveLength(6)
|
2022-07-10 16:12:04 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|