mirror of
https://github.com/koel/koel
synced 2024-12-21 10:03:10 +00:00
24 lines
621 B
TypeScript
24 lines
621 B
TypeScript
import { expect, it } from 'vitest'
|
|
import factory from '@/__tests__/factory'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import FooterMiddlePane from './FooterMiddlePane.vue'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('renders without a song', () => {
|
|
expect(this.render(FooterMiddlePane).html()).toMatchSnapshot()
|
|
})
|
|
|
|
it('renders with a song', () => {
|
|
const song = factory<Song>('song', {
|
|
title: 'Fahrstuhl to Heaven'
|
|
})
|
|
|
|
expect(this.render(FooterMiddlePane, {
|
|
props: {
|
|
song
|
|
}
|
|
}).html()).toMatchSnapshot()
|
|
})
|
|
}
|
|
}
|