@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
11 lines • 359 B
JavaScript
import React from 'react';
import { render } from '@testing-library/react';
import ErrorAlertIcon from "../ErrorAlertIcon";
describe('ErrorAlertIcon', () => {
test('rendering the defult props', () => {
const {
asFragment
} = render( /*#__PURE__*/React.createElement(ErrorAlertIcon, null));
expect(asFragment()).toMatchSnapshot();
});
});