-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathuseElementStyle.spec.ts
46 lines (31 loc) · 1015 Bytes
/
useElementStyle.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { mount } from '@vue/test-utils'
import { nextTick, ref } from 'vue'
import { describe, expect, it } from 'vitest'
import { useElementStyle } from '../src'
const TestComponent = {
template: '<div>Hello world</div>',
}
function getElementRef() {
const c = mount(TestComponent)
return ref<HTMLElement>(c.element as HTMLElement)
}
describe('useElementStyle', () => {
it('accepts an element', () => {
const element = getElementRef()
const { style } = useElementStyle(element)
expect(style).toBeDefined()
})
it('mutates style properties', () => {
const element = getElementRef()
const { style } = useElementStyle(element)
style.backgroundColor = 'blue'
expect(style.backgroundColor).toBe('blue')
})
it('mutates element properties', async () => {
const element = getElementRef()
const { style } = useElementStyle(element)
style.backgroundColor = 'blue'
await nextTick()
expect(element.value.style.backgroundColor).toBe('blue')
})
})