mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-28 03:43:28 +10:00
10 lines
314 B
JavaScript
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();
|
|
});
|
|
});
|