@muvehealth/fixins
Version:
Component library for Muvehealth
34 lines (30 loc) • 749 B
Flow
/* eslint-disable function-paren-newline, comma-dangle */
import React from 'react'
import renderWithTheme from '../../testHelper'
import Text from '../Text'
describe('Text', () => {
it('renders a Text Element', () => {
const tree = shallow(
<Text>
This is a test
</Text>
)
expect(tree).toMatchSnapshot()
})
it('renders a Text Element with a text-align attribute', () => {
const tree = shallow(
<Text textAlign="right">
This is a test
</Text>
)
expect(tree).toMatchSnapshot()
})
it('renders a bold Text Element', () => {
const tree = renderWithTheme(
<Text fontWeight="bold">
This is a test
</Text>
)
expect(tree).toMatchSnapshot()
})
})