MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/Components/BidderPortfolio/AddToInternalListButton/AddToInternalListButton.test.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import { shallow } from 'enzyme';
import AddToInternalListButton from './AddToInternalListButton';

describe('AddToInternalListButton', () => {
  const props = {
    refKey: 1,
  };

  it('is defined', () => {
    const wrapper = shallow(<AddToInternalListButton.WrappedComponent {...props} />);
    expect(wrapper).toBeDefined();
  });
});