mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
23 lines
618 B
TypeScript
23 lines
618 B
TypeScript
import { render } from '@/__tests__/__helpers__'
|
|
import factory from '@/__tests__/factory'
|
|
import { cleanup } from '@testing-library/vue'
|
|
import { beforeEach, expect, it } from 'vitest'
|
|
import AlbumTrackList from './AlbumTrackList.vue'
|
|
import TrackListItem from './AlbumTrackListItem.vue'
|
|
|
|
beforeEach(() => cleanup())
|
|
|
|
it('lists the correct number of tracks', () => {
|
|
const { queryAllByTestId } = render(AlbumTrackList, {
|
|
props: {
|
|
album: factory<Album>('album')
|
|
},
|
|
global: {
|
|
stubs: {
|
|
TrackListItem
|
|
}
|
|
}
|
|
})
|
|
|
|
expect(queryAllByTestId('album-track-item')).toHaveLength(2)
|
|
})
|