mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 14:15:06 +01:00
23 lines
596 B
JavaScript
23 lines
596 B
JavaScript
|
import React from 'react';
|
||
|
|
||
|
import { renderWithProvider } from '../../../../../test/jest';
|
||
|
import ActionableMessage from '.';
|
||
|
|
||
|
const createProps = (customProps = {}) => {
|
||
|
return {
|
||
|
message: 'I am an actionable message!',
|
||
|
...customProps,
|
||
|
};
|
||
|
};
|
||
|
|
||
|
describe('ActionableMessage', () => {
|
||
|
it('renders the component with initial props', () => {
|
||
|
const props = createProps();
|
||
|
const { container, getByText } = renderWithProvider(
|
||
|
<ActionableMessage {...props} />,
|
||
|
);
|
||
|
expect(getByText(props.message)).toBeInTheDocument();
|
||
|
expect(container).toMatchSnapshot();
|
||
|
});
|
||
|
});
|