1234567891011121314 |
- import {render} from 'sentry-test/reactTestingLibrary';
- import PluginIcon from 'sentry/plugins/components/pluginIcon';
- jest.mock('images/logos/logo-github.svg', () => 'github', {});
- describe('PluginIcon', function () {
- it('renders', function () {
- render(<PluginIcon pluginId="github" size={20} />);
- });
- });
|