koel/resources/assets/js/components/profile-preferences/ThemeList.spec.ts
2022-05-13 19:58:38 +02:00

12 lines
386 B
TypeScript

import { expect, it } from 'vitest'
import { themeStore } from '@/stores'
import UnitTestCase from '@/__tests__/UnitTestCase'
import ThemeList from './ThemeList.vue'
new class extends UnitTestCase {
protected test () {
it('displays all themes', () => {
expect(this.render(ThemeList).getAllByTestId('theme-card').length).toEqual(themeStore.state.themes.length)
})
}
}