Browse Source

chore: run prettier

Evan You 2 years ago
parent
commit
37f9ef8174
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/runtime-core/__tests__/hydration.spec.ts

+ 1 - 1
packages/runtime-core/__tests__/hydration.spec.ts

@@ -1165,7 +1165,7 @@ describe('SSR hydration', () => {
     const Comp = {
       render(this: any) {
         return h('p', [''])
-      }
+      },
     }
     const { container } = mountWithHydration('<p></p>', () => h(Comp))
     expect(container.childNodes.length).toBe(1)