import {act, render, screen} from 'sentry-test/reactTestingLibrary'; import ConfigStore from 'sentry/stores/configStore'; import withConfig from 'sentry/utils/withConfig'; describe('withConfig HoC', function () { beforeEach(() => { ConfigStore.init(); }); afterEach(() => { ConfigStore.teardown(); }); it('adds config prop', function () { const MyComponent = ({config}) =>