Skip to content

Commit 450e0e3

Browse files
[autofix.ci] apply automated fixes
1 parent b1b30d6 commit 450e0e3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/runtime-dom/src/components/TransitionGroup.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ const TransitionGroupImpl: ComponentOptions = {
128128
child.component.subTree.patchFlag & PatchFlags.DEV_ROOT_FRAGMENT
129129
) {
130130
const elementRoot = filterSingleRoot(
131-
child.component.subTree.children as VNodeArrayChildren
131+
child.component.subTree.children as VNodeArrayChildren,
132132
)
133133
if (elementRoot) {
134134
child.el = elementRoot.el

packages/vue/__tests__/e2e/TransitionGroup.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ describe('e2e: TransitionGroup', () => {
533533
const show = ref(true)
534534
const click = () => (show.value = false)
535535
return { show, click }
536-
}
536+
},
537537
})
538538
app.component('a-component', { template: `<!----><div></div>` })
539539
app.mount('#app')
@@ -547,6 +547,6 @@ describe('e2e: TransitionGroup', () => {
547547
expect(onErrorSpy).not.toBeCalled()
548548
expect(await html('#container')).toBe('')
549549
},
550-
E2E_TIMEOUT
550+
E2E_TIMEOUT,
551551
)
552552
})

0 commit comments

Comments
 (0)