chore: update

This commit is contained in:
yangchangtao 2025-05-27 17:49:33 +08:00
parent c67368a52f
commit 5e0e684366
1 changed files with 6 additions and 0 deletions

View File

@ -282,4 +282,10 @@ test('ATTR_ENUMERATED_COERCION: true', () => {
template: `<div><div draggable="false">hello</div></div>`,
}).$mount()
expect(vm.$el.innerHTML).toBe(`<div draggable="false">hello</div>`)
expect(
(
deprecationData[DeprecationTypes.ATTR_ENUMERATED_COERCION]
.message as Function
)('draggable', 'false', 'false'),
).toHaveBeenWarned()
})