We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c67368a commit 5e0e684Copy full SHA for 5e0e684
packages/vue-compat/__tests__/misc.spec.ts
@@ -282,4 +282,10 @@ test('ATTR_ENUMERATED_COERCION: true', () => {
282
template: `<div><div draggable="false">hello</div></div>`,
283
}).$mount()
284
expect(vm.$el.innerHTML).toBe(`<div draggable="false">hello</div>`)
285
+ expect(
286
+ (
287
+ deprecationData[DeprecationTypes.ATTR_ENUMERATED_COERCION]
288
+ .message as Function
289
+ )('draggable', 'false', 'false'),
290
+ ).toHaveBeenWarned()
291
})
0 commit comments