feat(test): add FavoritesScreen tests

This commit is contained in:
Phan An 2022-07-12 10:37:11 +02:00
parent 955486e209
commit 3efeec44a5
No known key found for this signature in database
GPG key ID: A81E4477F0BB6FDC
2 changed files with 41 additions and 2 deletions

View file

@ -0,0 +1,39 @@
import { waitFor } from '@testing-library/vue'
import { expect, it } from 'vitest'
import factory from '@/__tests__/factory'
import UnitTestCase from '@/__tests__/UnitTestCase'
import { favoriteStore } from '@/stores'
import FavoritesScreen from './FavoritesScreen.vue'
import { eventBus } from '@/utils'
new class extends UnitTestCase {
private async renderComponent () {
const fetchMock = this.mock(favoriteStore, 'fetch')
const rendered = this.render(FavoritesScreen)
eventBus.emit('LOAD_MAIN_CONTENT', 'Favorites')
await waitFor(() => expect(fetchMock).toHaveBeenCalled())
return rendered
}
protected test () {
it('renders a list of favorites', async () => {
favoriteStore.state.songs = factory<Song[]>('song', 13)
const { queryByTestId } = await this.renderComponent()
await waitFor(() => {
expect(queryByTestId('screen-empty-state')).toBeNull()
expect(queryByTestId('song-list')).not.toBeNull()
})
})
it('shows empty state', async () => {
favoriteStore.state.songs = []
const { queryByTestId } = await this.renderComponent()
expect(queryByTestId('screen-empty-state')).not.toBeNull()
expect(queryByTestId('song-list')).toBeNull()
})
}
}

View file

@ -30,14 +30,14 @@
</ScreenHeader> </ScreenHeader>
<SongList <SongList
v-show="songs.length" v-if="songs.length"
ref="songList" ref="songList"
@press:delete="removeSelected" @press:delete="removeSelected"
@press:enter="onPressEnter" @press:enter="onPressEnter"
@sort="sort" @sort="sort"
/> />
<ScreenEmptyState v-show="!songs.length"> <ScreenEmptyState v-else>
<template v-slot:icon> <template v-slot:icon>
<i class="fa fa-frown-o"></i> <i class="fa fa-frown-o"></i>
</template> </template>