Skip to content

Commit e467d4d

Browse files
committed
chore: update test
1 parent 03757ff commit e467d4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/runtime-dom/__tests__/patchStyle.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ describe(`runtime-dom: style patching`, () => {
8787
expect(el.style.cssText).toBe('')
8888
})
8989

90-
it('should not overwritten the same value', () => {
90+
it('should not update style if its not change', () => {
9191
const el = document.createElement('div')
9292
patchProp(el, 'style', {}, { left: '10px' })
9393
expect(el.style.getPropertyValue('left')).toBe('10px')

0 commit comments

Comments
 (0)