koel/resources/assets/js/components/layout/app-footer/FooterExtraControls.spec.ts
2022-10-16 01:19:21 +02:00

25 lines
700 B
TypeScript

import { expect, it } from 'vitest'
import factory from '@/__tests__/factory'
import UnitTestCase from '@/__tests__/UnitTestCase'
import { CurrentSongKey } from '@/symbols'
import FooterExtraControls from './FooterExtraControls.vue'
new class extends UnitTestCase {
protected test () {
it('renders', () => {
expect(this.render(FooterExtraControls, {
global: {
stubs: {
Equalizer: this.stub('Equalizer'),
Volume: this.stub('Volume')
},
provide: {
[CurrentSongKey]: factory<Song>('song', {
playback_state: 'Playing'
})
}
}
}).html()).toMatchSnapshot()
})
}
}