mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
15 lines
419 B
TypeScript
15 lines
419 B
TypeScript
import { expect, it } from 'vitest'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import ViewModeSwitch from './ViewModeSwitch.vue'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it.each<[ArtistAlbumViewMode]>([['thumbnails'], ['list']])('renders %s mode', mode => {
|
|
expect(this.render(ViewModeSwitch, {
|
|
props: {
|
|
mode
|
|
}
|
|
}).html()).toMatchSnapshot()
|
|
})
|
|
}
|
|
}
|