diff options
Diffstat (limited to 'ui/tests/lib/components/CreateChannelForm.svelte.test.js')
| -rw-r--r-- | ui/tests/lib/components/CreateChannelForm.svelte.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/tests/lib/components/CreateChannelForm.svelte.test.js b/ui/tests/lib/components/CreateChannelForm.svelte.test.js index 15d3cfd..197cb6b 100644 --- a/ui/tests/lib/components/CreateChannelForm.svelte.test.js +++ b/ui/tests/lib/components/CreateChannelForm.svelte.test.js @@ -6,13 +6,13 @@ import CreateChannelForm from '$lib/components/CreateChannelForm.svelte'; const user = userEvent.setup(); const mocks = vi.hoisted(() => ({ - createChannel: vi.fn() + createChannel: vi.fn(), })); describe('CreateChannelForm', async () => { beforeEach(async () => { render(CreateChannelForm, { - createChannel: mocks.createChannel + createChannel: mocks.createChannel, }); }); |
