box-ui-elements-mlh
Version:
14 lines (10 loc) • 364 B
JavaScript
import React from 'react';
import ReferAFriendAd from '../ReferAFriendAd';
describe('features/invite-collaborators-modal/ReferAFriendAd', () => {
const getWrapper = () => shallow(<ReferAFriendAd />);
describe('render()', () => {
test('should render correctly', () => {
expect(getWrapper()).toMatchSnapshot();
});
});
});