mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
20 lines
475 B
TypeScript
20 lines
475 B
TypeScript
import { autoPrefixStyle } from '../../src/utils/element'
|
|
|
|
describe('autoPrefixStyle', () => {
|
|
it('should be defined', () => {
|
|
expect(autoPrefixStyle).toBeDefined()
|
|
})
|
|
|
|
it('should complete css prefix', () => {
|
|
const result = autoPrefixStyle('transform')
|
|
|
|
expect(result).toEqual({
|
|
webkitTransform: 'transform',
|
|
mozTransform: 'transform',
|
|
msTransform: 'transform',
|
|
oTransform: 'transform',
|
|
transform: 'transform',
|
|
})
|
|
})
|
|
})
|