MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/Components/ProfilePage/Notifications.test.jsx

Summary

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

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