mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
12 lines
313 B
JavaScript
12 lines
313 B
JavaScript
import React from 'react';
|
|
|
|
import { renderWithProvider } from '../../../../test/jest';
|
|
import PigIcon from './pig-icon';
|
|
|
|
describe('PigIcon', () => {
|
|
it('renders the component', () => {
|
|
const { container } = renderWithProvider(<PigIcon />);
|
|
expect(container.firstChild.nodeName).toBe('svg');
|
|
});
|
|
});
|