adminBuffer.spec.tsx 473 B

123456789101112131415161718
  1. import {render} from 'sentry-test/reactTestingLibrary';
  2. import AdminBuffer from 'sentry/views/admin/adminBuffer';
  3. // TODO(dcramer): this doesnt really test anything as we need to
  4. // mock the API Response/wait on it
  5. describe('AdminBuffer', function () {
  6. describe('render()', function () {
  7. it('renders', function () {
  8. MockApiClient.addMockResponse({
  9. url: '/internal/stats/',
  10. body: [],
  11. });
  12. render(<AdminBuffer />);
  13. });
  14. });
  15. });