{"version":3,"sources":[".spec.js"],"names":["describe","it","tree","renderer","create","toJSON","expect","toMatchSnapshot"],"mappings":";;AAAA;;AACA;;AAEA;;;;AAEAA,QAAQ,CAAC,YAAD,EAAe,YAAM;AACzBC,EAAAA,EAAE,CAAC,4CAAD,EAA+C,YAAM;AACnD,QAAMC,IAAI,GAAGC,8BAASC,MAAT,eACT,gCAAC,YAAD;AACI,MAAA,KAAK,EAAE,YADX;AAEI,MAAA,EAAE,MAFN;AAGI,MAAA,KAAK,EAAE;AAHX,MADS,EAKLC,MALK,EAAb;;AAMAC,IAAAA,MAAM,CAACJ,IAAD,CAAN,CAAaK,eAAb;AACH,GARC,CAAF;AASH,CAVO,CAAR","sourcesContent":["import React from 'react'\nimport renderer from 'react-test-renderer'\n\nimport Body from '.'\n\ndescribe('Typography', () => {\n    it('Rendering Font Components without crashing', () => {\n        const tree = renderer.create(\n            <Body\n                color={\"Indigo-900\"}\n                lg\n                label={\"Body component Indigo-900\"}\n            />).toJSON()\n        expect(tree).toMatchSnapshot()\n    })\n})"]}