mirror of
https://github.com/koel/koel
synced 2024-12-05 02:09:54 +00:00
8 lines
244 B
TypeScript
8 lines
244 B
TypeScript
import { expect, it } from 'vitest'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('has already been tested in the integration suite', () => expect('😄').toBeTruthy())
|
|
}
|
|
}
|