import React from 'react';
import { createShallowComponent } from 'soapbox/test_helpers';
import { Card, CardBody, CardHeader, CardTitle } from '../card';
describe('', () => {
it('renders the CardTitle and CardBody', () => {
const component = createShallowComponent(
Card Body
,
);
expect(component.text()).toContain('Card Title');
expect(component.text()).toContain('Card Body');
expect(component.text()).not.toContain('Back');
});
it('renders the Back Button', () => {
const component = createShallowComponent(
,
);
expect(component.text()).toContain('Back');
});
});