koel/resources/assets/js/stores/albumStore.spec.ts
2022-07-04 10:36:39 +02:00

14 lines
304 B
TypeScript

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 () {
}
}