mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-12 04:37:13 +01:00
001a01e5b2
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');
|
|||
});
|
|||
});
|