mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
14 lines
304 B
TypeScript
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 () {
|
|
}
|
|
}
|