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

20 lines
606 B
TypeScript

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', () => {
overviewStore.state.recentlyAddedSongs = factory('song', 6)
expect(this.render(RecentlyAddedSongs, {
global: {
stubs: {
SongCard: this.stub('song-card')
}
}
}).getAllByTestId('song-card')).toHaveLength(6)
})
}
}