koel/resources/assets/js/stores/albumStore.spec.ts

15 lines
304 B
TypeScript
Raw Normal View History

2022-05-15 14:57:28 +00:00
import UnitTestCase from '@/__tests__/UnitTestCase'
import { albumStore, artistStore } from '@/stores'
new class extends UnitTestCase {
protected afterEach () {
super.afterEach(() => {
artistStore.state.artists = []
albumStore.state.albums = []
})
}
protected test () {
}
}