astro-ghostcms/.pnpm-store/v3/files/69/de773091a5d25d25c2883b77a9b...

9 lines
252 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import transformCss from '..'
it('transforms font weights as strings', () => {
expect(transformCss([['font-weight', '400']])).toEqual({ fontWeight: '400' })
expect(transformCss([['font-weight', 'bold']])).toEqual({
fontWeight: 'bold',
})
})