mirror of
https://github.com/koel/koel
synced 2024-12-12 05:32:28 +00:00
12 lines
401 B
TypeScript
12 lines
401 B
TypeScript
import { expect, it } from 'vitest'
|
|
import { themeStore } from '@/stores'
|
|
import ComponentTestCase from '@/__tests__/ComponentTestCase'
|
|
import ThemeList from './ThemeList.vue'
|
|
|
|
new class extends ComponentTestCase {
|
|
protected test () {
|
|
it('displays all themes', () => {
|
|
expect(this.render(ThemeList).getAllByTestId('theme-card').length).toEqual(themeStore.state.themes.length)
|
|
})
|
|
}
|
|
}
|