mirror of
https://github.com/koel/koel
synced 2024-12-13 06:02:27 +00:00
19 lines
711 B
TypeScript
19 lines
711 B
TypeScript
import { expect, it } from 'vitest'
|
|
import { searchStore } from '@/stores'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import SearchSongResultsScreen from './SearchSongResultsScreen.vue'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('searches for prop query on created', () => {
|
|
const resetResultMock = this.mock(searchStore, 'resetSongResultState')
|
|
const searchMock = this.mock(searchStore, 'songSearch')
|
|
|
|
this.router.activateRoute({ path: 'search-songs', screen: 'Search.Songs' }, { q: 'search me' })
|
|
this.render(SearchSongResultsScreen)
|
|
|
|
expect(resetResultMock).toHaveBeenCalled()
|
|
expect(searchMock).toHaveBeenCalledWith('search me')
|
|
})
|
|
}
|
|
}
|