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

20 lines
615 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', 6)
expect(this.render(RecentlyAddedAlbums, {
global: {
stubs: {
AlbumCard: this.stub('album-card')
}
}
}).getAllByTestId('album-card')).toHaveLength(6)
})
}
}