You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
362 B
14 lines
362 B
import transformCss from '..'
|
|
|
|
it('transforms shadow offsets', () => {
|
|
expect(transformCss([['shadow-offset', '10px 5px']])).toEqual({
|
|
shadowOffset: { width: 10, height: 5 },
|
|
})
|
|
})
|
|
|
|
it('transforms text shadow offsets', () => {
|
|
expect(transformCss([['text-shadow-offset', '10px 5px']])).toEqual({
|
|
textShadowOffset: { width: 10, height: 5 },
|
|
})
|
|
})
|