blob: 597f0c3b51a6b264871401aaed4d5809562116a4 (
plain)
1
2
3
4
5
6
7
8
9
|
// async onSubmit(event)
// onKeyDown(event)
import { describe, expect, test } from 'vitest';
describe('MessageInput', () => {
test('stub', async () => {
expect(true).toBeTruthy();
});
});
|