1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-24 04:13:27 +02:00
metamask-extension/ui/app/pages/swaps/loading-swaps-quotes/background-animation.test.js

13 lines
430 B
JavaScript
Raw Normal View History

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