koel/resources/assets/js/components/layout/main-wrapper/Sidebar.spec.ts
2022-05-09 11:59:31 +02:00

8 lines
259 B
TypeScript

import { expect, it } from 'vitest'
import ComponentTestCase from '@/__tests__/ComponentTestCase'
new class extends ComponentTestCase {
protected test () {
it('has already been tested in the integration suite', () => expect('😄').toBeTruthy())
}
}