mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
23 lines
710 B
TypeScript
23 lines
710 B
TypeScript
import { expect, it } from 'vitest'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import { commonStore } from '@/stores'
|
|
import SpotifyIntegration from './SpotifyIntegration.vue'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it.each<[boolean, boolean]>([[false, false], [false, true], [true, false], [true, true]]) (
|
|
'renders proper content with Spotify integration status %s, current user admin status %s',
|
|
(useSpotify, isAdmin) => {
|
|
commonStore.state.uses_spotify = useSpotify
|
|
|
|
if (isAdmin) {
|
|
this.beAdmin()
|
|
} else {
|
|
this.be()
|
|
}
|
|
|
|
expect(this.render(SpotifyIntegration).html()).toMatchSnapshot()
|
|
},
|
|
)
|
|
}
|
|
}
|