koel/resources/assets/js/components/screens/home/RecentlyAddedAlbums.spec.ts
2022-10-23 19:52:07 +02:00

20 lines
622 B
TypeScript

import { expect, it } from 'vitest'
import { overviewStore } from '@/stores'
import UnitTestCase from '@/__tests__/UnitTestCase'
import factory from '@/__tests__/factory'
import RecentlyAddedAlbums from './RecentlyAddedAlbums.vue'
new class extends UnitTestCase {
protected test () {
it('displays the albums', () => {
overviewStore.state.recentlyAddedAlbums = factory<Album>('album', 6)
expect(this.render(RecentlyAddedAlbums, {
global: {
stubs: {
AlbumCard: this.stub('album-card')
}
}
}).getAllByTestId('album-card')).toHaveLength(6)
})
}
}