koel/resources/assets/js/components/screens/RecentlyPlayedScreen.spec.ts

43 lines
1.3 KiB
TypeScript

import { expect, it } from 'vitest'
import factory from '@/__tests__/factory'
import UnitTestCase from '@/__tests__/UnitTestCase'
import { recentlyPlayedStore } from '@/stores'
import { waitFor } from '@testing-library/vue'
import RecentlyPlayedScreen from './RecentlyPlayedScreen.vue'
new class extends UnitTestCase {
private async renderComponent (songs: Song[]) {
recentlyPlayedStore.state.songs = songs
const fetchMock = this.mock(recentlyPlayedStore, 'fetch')
const rendered = this.render(RecentlyPlayedScreen, {
global: {
stubs: {
SongList: this.stub('song-list')
}
}
})
await this.router.activateRoute({ path: 'recently-played', screen: 'RecentlyPlayed' })
await waitFor(() => expect(fetchMock).toHaveBeenCalled())
return rendered
}
protected test () {
it('displays the songs', async () => {
const { queryByTestId } = await this.renderComponent(factory<Song>('song', 3))
expect(queryByTestId('song-list')).toBeTruthy()
expect(queryByTestId('screen-empty-state')).toBeNull()
})
it('displays the empty state', async () => {
const { queryByTestId } = await this.renderComponent([])
expect(queryByTestId('song-list')).toBeNull()
expect(queryByTestId('screen-empty-state')).toBeTruthy()
})
}
}