mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
13 lines
427 B
JavaScript
13 lines
427 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');
|
|
});
|
|
});
|