import React from 'react';
import { render } from 'react-testing-library';
import { IntlProvider } from 'react-intl';
import FeaturePage from '../index';
describe('', () => {
it('should render its heading', () => {
const {
container: { firstChild },
} = render(
,
);
expect(firstChild).toMatchSnapshot();
});
});