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 5fac655 commit 189a0a3Copy full SHA for 189a0a3
packages/runtime-dom/__tests__/modules/style.spec.ts
@@ -21,7 +21,7 @@ describe(`module style`, () => {
21
22
it('remove if falsy value', () => {
23
const el = document.createElement('div')
24
- patchStyle(el, { color: 'red' }, { color: null })
+ patchStyle(el, { color: 'red' }, { color: undefined })
25
expect(el.style.cssText.replace(/\s/g, '')).toBe('')
26
})
27
0 commit comments