Skip to content

Commit 0c82d7c

Browse files
[autofix.ci] apply automated fixes
1 parent f27f03e commit 0c82d7c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages/runtime-core/__tests__/componentSlots.spec.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,13 @@ describe('component: slots', () => {
5252

5353
// Internal compiler markers must still exist but be non-enumerable
5454
expect(slots).toHaveProperty('_')
55-
expect(Object.getOwnPropertyDescriptor(slots, '_')!.enumerable).toBe(false)
55+
expect(Object.getOwnPropertyDescriptor(slots, '_')!.enumerable).toBe(
56+
false,
57+
)
5658
expect(slots).toHaveProperty('__')
57-
expect(Object.getOwnPropertyDescriptor(slots, '__')!.enumerable).toBe(false)
59+
expect(Object.getOwnPropertyDescriptor(slots, '__')!.enumerable).toBe(
60+
false,
61+
)
5862
return h('div')
5963
},
6064
}

0 commit comments

Comments
 (0)