blob: 31f7462089e019dfdba57a0239d31c469e24cdc8 (
plain)
1
2
3
4
5
6
7
8
|
// async handleSubmit(event)
import { describe, expect, test } from 'vitest';
describe('CreateChannelForm', () => {
test('stub', async () => {
expect(true).toBeTruthy();
});
});
|