1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/swaps/loading-swaps-quotes/background-animation.test.js
2021-04-28 14:53:59 -05:00

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');
});
});