mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { expect, it } from 'vitest'
|
|
import factory from '@/__tests__/factory'
|
|
import { preferenceStore } from '@/stores'
|
|
import SoundBar from '@/components/ui/SoundBar.vue'
|
|
import Volume from '@/components/ui/Volume.vue'
|
|
import LikeButton from '@/components/song/SongLikeButton.vue'
|
|
import RepeatModeSwitch from '@/components/ui/RepeatModeSwitch.vue'
|
|
import Equalizer from '@/components/ui/Equalizer.vue'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import FooterExtraControls from './FooterExtraControls.vue'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('renders', () => {
|
|
preferenceStore.state.showExtraPanel = true
|
|
|
|
expect(this.render(FooterExtraControls, {
|
|
props: {
|
|
song: factory<Song>('song', {
|
|
playback_state: 'Playing',
|
|
// Set these values for Like button's rendered HTML to be consistent
|
|
title: 'Fahrstuhl to Heaven'
|
|
})
|
|
},
|
|
global: {
|
|
stubs: {
|
|
SoundBar,
|
|
Volume,
|
|
LikeButton,
|
|
RepeatModeSwitch,
|
|
Equalizer
|
|
}
|
|
}
|
|
}).html()).toMatchSnapshot()
|
|
})
|
|
}
|
|
}
|