12345678910111213141516 |
- import {mountWithTheme} from 'sentry-test/enzyme';
- import ApiNewToken from 'sentry/views/settings/account/apiNewToken';
- describe('ApiNewToken', function () {
- describe('render()', function () {
- it('renders', function () {
- const wrapper = mountWithTheme(<ApiNewToken params={{}} />, {
- context: {
- router: TestStubs.router(),
- },
- });
- expect(wrapper).toSnapshot();
- });
- });
- });
|