diff options
Diffstat (limited to 'ui/tests/lib/components/CreateChannelForm.svelte.test.js')
| -rw-r--r-- | ui/tests/lib/components/CreateChannelForm.svelte.test.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ui/tests/lib/components/CreateChannelForm.svelte.test.js b/ui/tests/lib/components/CreateChannelForm.svelte.test.js index 0380e01..31f7462 100644 --- a/ui/tests/lib/components/CreateChannelForm.svelte.test.js +++ b/ui/tests/lib/components/CreateChannelForm.svelte.test.js @@ -1 +1,8 @@ // async handleSubmit(event) +import { describe, expect, test } from 'vitest'; + +describe('CreateChannelForm', () => { + test('stub', async () => { + expect(true).toBeTruthy(); + }); +}); |
