mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
19 lines
596 B
TypeScript
19 lines
596 B
TypeScript
import { expect, it } from 'vitest'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import { http } from '@/services'
|
|
import { settingStore } from '.'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('initializes the store', () => {
|
|
settingStore.init({ media_path: '/media/path' })
|
|
expect(settingStore.state.media_path).toEqual('/media/path')
|
|
})
|
|
|
|
it('updates the media path', async () => {
|
|
this.mock(http, 'put')
|
|
await settingStore.update({ media_path: '/dev/null' })
|
|
expect(settingStore.state.media_path).toEqual('/dev/null')
|
|
})
|
|
}
|
|
}
|