koel/resources/assets/js/components/layout/app-footer/FooterMiddlePane.spec.ts

25 lines
621 B
TypeScript
Raw Normal View History

import { expect, it } from 'vitest'
2022-05-05 14:56:31 +00:00
import factory from '@/__tests__/factory'
2022-05-13 17:58:38 +00:00
import UnitTestCase from '@/__tests__/UnitTestCase'
import FooterMiddlePane from './FooterMiddlePane.vue'
2022-05-05 14:56:31 +00:00
2022-05-13 17:58:38 +00:00
new class extends UnitTestCase {
protected test () {
it('renders without a song', () => {
expect(this.render(FooterMiddlePane).html()).toMatchSnapshot()
2022-05-05 14:56:31 +00:00
})
it('renders with a song', () => {
const song = factory<Song>('song', {
2022-06-10 10:47:46 +00:00
title: 'Fahrstuhl to Heaven'
})
2022-05-05 14:56:31 +00:00
expect(this.render(FooterMiddlePane, {
props: {
song
}
}).html()).toMatchSnapshot()
})
}
}