modal.jsx 268 B

1234567891011
  1. import {mountWithTheme} from 'sentry-test/enzyme';
  2. import GlobalModal from 'app/components/globalModal';
  3. export async function mountGlobalModal(context) {
  4. const modal = mountWithTheme(<GlobalModal />, context);
  5. await tick();
  6. modal.update();
  7. return modal;
  8. }