koel/resources/assets/js/components/layout/main-wrapper/Sidebar.spec.ts
2022-05-13 19:58:38 +02:00

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())
}
}