import WrapContainer from './WrapContainer.component';

describe('<WrapContainer>', () => {
  it('Happy: Render WrapperContainer', () => {
    const json = renderJSON(
      <WrapContainer id="test-id">
        <div> This is a children</div>
      </WrapContainer>,
    );
    expect(json.type).toBe('section');
  });

  it('SAD: without props', () => {
    expect(() => shallow(<WrapContainer />)).toThrow();
  });
});
