From 8e180664ce0503adb7da84f6b32ccfea2265fd3d Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Sun, 25 Feb 2024 10:30:37 +0000 Subject: [PATCH] chore: spacing --- test/nuxt/composables.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/nuxt/composables.test.ts b/test/nuxt/composables.test.ts index 6d986d6f70..c7945bd629 100644 --- a/test/nuxt/composables.test.ts +++ b/test/nuxt/composables.test.ts @@ -412,7 +412,7 @@ describe('useHydration', () => { it('should hydrate value from payload', async () => { let val: any const nuxtApp = useNuxtApp() - useHydration('key', () => { }, (fromPayload) => { val = fromPayload }) + useHydration('key', () => {}, (fromPayload) => { val = fromPayload }) await nuxtApp.hooks.callHook('app:created', nuxtApp.vueApp) expect(val).toMatchInlineSnapshot('undefined') @@ -483,7 +483,7 @@ describe('useId', () => { const vals = new Set() for (let index = 0; index < 100; index++) { mount(defineComponent({ - setup() { + setup () { const id = useId() vals.add(id) return () => h('div', id) @@ -495,7 +495,7 @@ describe('useId', () => { it('generates unique ids per-component', () => { const component = defineComponent({ - setup() { + setup () { const id = useId() return () => h('div', id) }