summaryrefslogtreecommitdiff
path: root/ui/tests/lib/components/LogIn.svelte.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/tests/lib/components/LogIn.svelte.test.js')
-rw-r--r--ui/tests/lib/components/LogIn.svelte.test.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/tests/lib/components/LogIn.svelte.test.js b/ui/tests/lib/components/LogIn.svelte.test.js
index ab77c11..00abb5c 100644
--- a/ui/tests/lib/components/LogIn.svelte.test.js
+++ b/ui/tests/lib/components/LogIn.svelte.test.js
@@ -6,13 +6,13 @@ import LogIn from '$lib/components/LogIn.svelte';
const user = userEvent.setup();
const mocks = vi.hoisted(() => ({
- logIn: vi.fn()
+ logIn: vi.fn(),
}));
describe('LogIn', async () => {
beforeEach(async () => {
render(LogIn, {
- logIn: mocks.logIn
+ logIn: mocks.logIn,
});
});
@@ -28,7 +28,7 @@ describe('LogIn', async () => {
expect(mocks.logIn).toHaveBeenCalledExactlyOnceWith(
'my username',
- 'my very creative and long password'
+ 'my very creative and long password',
);
});
});