ifmeorg/ifme

View on GitHub
client/app/components/BaseContainer/__tests__/StoryContainer.spec.jsx

Summary

Maintainability
A
0 mins
Test Coverage
// @flow
import React from 'react';
import { render } from '@testing-library/react';
import StoryContainer from 'components/BaseContainer/StoryContainer';

describe('StoryContainer', () => {
  it('renders correctly', () => {
    const { container } = render(<StoryContainer data={[]} />);
    expect(container.firstChild).not.toBeNull();
  });
});