UNPKG

infrastructure-components

Version:

Infrastructure-Components configure the infrastructure of your React-App as part of your React-Components.

24 lines (20 loc) 652 B
import transformCss from '..' it('transforms text-decoration-line with underline line-through', () => { expect( transformCss([['text-decoration-line', 'underline line-through']]) ).toEqual({ textDecorationLine: 'underline line-through', }) }) it('transforms text-decoration-line with line-through underline', () => { expect( transformCss([['text-decoration-line', 'line-through underline']]) ).toEqual({ textDecorationLine: 'underline line-through', }) }) it('transforms text-decoration-line with none', () => { expect(transformCss([['text-decoration-line', 'none']])).toEqual({ textDecorationLine: 'none', }) })