privacy-policy.test.js 349 B

1234567891011
  1. import { shallow } from 'enzyme';
  2. import toJson from 'enzyme-to-json';
  3. import React from 'react';
  4. import PrivacyPolicyPage from '../../src/pages/privacy-policy';
  5. describe('PrivacyPolicyPage page', () => {
  6. it('renders correctly', () => {
  7. const wrapper = shallow(<PrivacyPolicyPage />);
  8. expect(toJson(wrapper)).toMatchSnapshot();
  9. });
  10. });