123456789101112131415161718 |
- import {mountWithTheme} from 'sentry-test/enzyme';
- import AdminBuffer from 'app/views/admin/adminBuffer';
- // TODO(dcramer): this doesnt really test anything as we need to
- // mock the API Response/wait on it
- describe('AdminBuffer', function () {
- describe('render()', function () {
- it('renders', function () {
- const wrapper = mountWithTheme(<AdminBuffer params={{}} />, {
- context: {
- router: TestStubs.router(),
- },
- });
- expect(wrapper).toSnapshot();
- });
- });
- });
|