mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
20 lines
643 B
JavaScript
20 lines
643 B
JavaScript
import React from 'react';
|
|
|
|
import { renderWithProvider } from '../../../../test/jest';
|
|
import MascotBackgroundAnimation from './mascot-background-animation';
|
|
|
|
describe('MascotBackgroundAnimation', () => {
|
|
it('renders the component', () => {
|
|
const { getByTestId } = renderWithProvider(<MascotBackgroundAnimation />);
|
|
expect(
|
|
getByTestId('mascot-background-animation-background-1'),
|
|
).toBeInTheDocument();
|
|
expect(
|
|
getByTestId('mascot-background-animation-background-2'),
|
|
).toBeInTheDocument();
|
|
expect(
|
|
getByTestId('mascot-background-animation-mascot-container'),
|
|
).toBeInTheDocument();
|
|
});
|
|
});
|