@kiwicom/smart-faq
Version:
15 lines (10 loc) • 330 B
JavaScript
// @flow
import * as React from 'react';
import { mount } from 'enzyme';
import FullFAQLink from '../FullFAQLink';
describe('FullFAQLink', () => {
it('should contain a link to helpcenter', () => {
const wrapper = mount(<FullFAQLink />);
expect(wrapper.find("a[href='/helpcenter']").exists()).toBeTruthy();
});
});