import getTypography from '@lendi-ui/commons/typography'; describe('getTypography()', () => { it('should return font family assigned to semantic', () => { expect(getTypography('title1', 'fontFamily')).toEqual("'Cabin', sans-serif"); }); it('should return font weight assigned to semantic', () => { expect(getTypography('title1', 'fontWeight')).toEqual(700); }); });