mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-28 03:43:28 +10:00
10 lines
319 B
JavaScript
10 lines
319 B
JavaScript
import React from 'react';
|
|
import { renderDeep } from '../../util/test-helpers';
|
|
import OrderDiscussionPanel from './OrderDiscussionPanel.js';
|
|
|
|
describe('OrderDiscussionPanel', () => {
|
|
it('matches snapshot', () => {
|
|
const tree = renderDeep(<OrderDiscussionPanel />);
|
|
expect(tree).toMatchSnapshot();
|
|
});
|
|
});
|