mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-12 12:47:14 +01:00
56db48a1c3
13 lines
430 B
JavaScript
13 lines
430 B
JavaScript
import React from 'react';
|
|||
|
|||
import { renderWithProvider } from '../../../../../test/jest';
|
|||
import BackgroundAnimation from './background-animation';
|
|||
|
|||
describe('BackgroundAnimation', () => {
|
|||
it('renders the component', () => {
|
|||
const { container } = renderWithProvider(<BackgroundAnimation />);
|
|||
expect(container.firstChild.nodeName).toBe('DIV');
|
|||
expect(container.firstChild.firstChild.nodeName).toBe('svg');
|
|||
});
|
|||
});
|