flex-template-web/src/components/SearchResultsPanel/SearchResultsPanel.test.js
2017-02-07 16:00:40 +02:00

10 lines
314 B
JavaScript

import React from 'react';
import { renderShallow } from '../../util/test-helpers';
import SearchResultsPanel from './SearchResultsPanel';
describe('SearchResultsPanel', () => {
it('matches snapshot', () => {
const tree = renderShallow(<SearchResultsPanel />);
expect(tree).toMatchSnapshot();
});
});