/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ import { configure, mount } from 'enzyme'; import Adapter from 'enzyme-adapter-react-16'; import React from 'react'; import { waitFor } from '@testing-library/react'; import { Metrics } from '../metrics/metrics'; import { LAYOUT_CONFIG, METRICS_TEST_VISUALIZATIONS_DATA, } from '../../../../../test/event_analytics_constants'; describe('Metrics component', () => { configure({ adapter: new Adapter() }); it('Renders Metrics component', async () => { const wrapper = mount( ); wrapper.update(); await waitFor(() => { expect(wrapper).toMatchSnapshot(); }); }); });