mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
15 lines
304 B
TypeScript
15 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 () {
|
||
|
}
|
||
|
}
|