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

41 lines
1.2 KiB
TypeScript

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