koel/resources/assets/js/components/layout/app-footer/FooterExtraControls.spec.ts
2022-11-06 18:09:06 +01:00

25 lines
708 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: {
[<symbol>CurrentSongKey]: factory<Song>('song', {
playback_state: 'Playing'
})
}
}
}).html()).toMatchSnapshot()
})
}
}