koel/resources/assets/js/components/ui/ScreenEmptyState.spec.ts

17 lines
433 B
TypeScript
Raw Normal View History

import { expect, it } from 'vitest'
import ComponentTestCase from '@/__tests__/ComponentTestCase'
import ScreenEmptyState from './ScreenEmptyState.vue'
new class extends ComponentTestCase {
protected test () {
it('renders', () => {
expect(this.render(ScreenEmptyState, {
slots: {
icon: '<i class="my-icon"/>',
default: 'Nothing here'
}
}).html()).toMatchSnapshot()
})
}
}