regexper-static/src/pages/privacy.test.js

14 lines
276 B
JavaScript
Raw Normal View History

2019-01-04 23:38:49 +00:00
import React from 'react';
import { shallow } from 'enzyme';
import PrivacyPage from 'pages/privacy';
describe('Privacy Page', () => {
test('rendering', () => {
const component = shallow(
<PrivacyPage />
);
expect(component).toMatchSnapshot();
});
});