mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
10 lines
193 B
TypeScript
10 lines
193 B
TypeScript
import { it } from 'vitest'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('displays a list of users', () => {
|
|
|
|
})
|
|
}
|
|
}
|