apiNewToken.spec.jsx 429 B

12345678910111213141516
  1. import {mountWithTheme} from 'sentry-test/enzyme';
  2. import ApiNewToken from 'sentry/views/settings/account/apiNewToken';
  3. describe('ApiNewToken', function () {
  4. describe('render()', function () {
  5. it('renders', function () {
  6. const wrapper = mountWithTheme(<ApiNewToken params={{}} />, {
  7. context: {
  8. router: TestStubs.router(),
  9. },
  10. });
  11. expect(wrapper).toSnapshot();
  12. });
  13. });
  14. });