-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathuseElementTransform.spec.ts
46 lines (31 loc) · 1.03 KB
/
useElementTransform.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 { useElementTransform } from '../src'
const TestComponent = {
template: '<div>Hello world</div>',
}
function getElementRef() {
const c = mount(TestComponent)
return ref<HTMLElement>(c.element as HTMLElement)
}
describe('useElementTransform', () => {
it('accepts an element', () => {
const element = getElementRef()
const { transform } = useElementTransform(element)
expect(transform).toBeDefined()
})
it('mutates style properties', () => {
const element = getElementRef()
const { transform } = useElementTransform(element)
transform.scale = 1.2
expect(transform.scale).toBe(1.2)
})
it('mutates element properties', async () => {
const element = getElementRef()
const { transform } = useElementTransform(element)
transform.translateY = '120px'
await nextTick()
expect(element.value.style.transform).toBe('translateY(120px) translateZ(0px)')
})
})