MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/Components/Agenda/AgendaItemRow/AgendaItemRow.test.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import { shallow } from 'enzyme';
import toJSON from 'enzyme-to-json';
import AgendaItemRow from './AgendaItemRow';

describe('AgendaItemRow Component', () => {
  it('is defined', () => {
    const wrapper = shallow(<AgendaItemRow />);
    expect(wrapper).toBeDefined();
  });

  xit('matches snapshot', () => {
    const wrapper = shallow(<AgendaItemRow />);
    expect(toJSON(wrapper)).toMatchSnapshot();
  });
});