mirror of
https://github.com/koel/koel
synced 2024-12-03 17:29:33 +00:00
12 lines
386 B
TypeScript
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)
|
|
})
|
|
}
|
|
}
|