summaryrefslogtreecommitdiff
path: root/ui/tests/lib/components/CreateChannelForm.svelte.test.js
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2025-06-11 12:39:28 -0400
committerOwen Jacobson <owen@grimoire.ca>2025-06-11 12:39:28 -0400
commit6e6b068ae2adc8c5ef8acb633dcadfbdc3221b61 (patch)
tree79831028416b0d6934f32961a3fc77d8b004369e /ui/tests/lib/components/CreateChannelForm.svelte.test.js
parent1f009e06fd6db82a91536eec88ef3232267385bf (diff)
tools/reformat
Diffstat (limited to 'ui/tests/lib/components/CreateChannelForm.svelte.test.js')
-rw-r--r--ui/tests/lib/components/CreateChannelForm.svelte.test.js4
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,
});
});