UNPKG

@zohodesk/dot

Version:

In this Library, we Provide Some Basic Components to Build Your Application

11 lines 355 B
import React from 'react'; import { render } from '@testing-library/react'; import InfoAlertIcon from "../InfoAlertIcon"; describe('InfoAlertIcon', () => { test('rendering the defult props', () => { const { asFragment } = render( /*#__PURE__*/React.createElement(InfoAlertIcon, null)); expect(asFragment()).toMatchSnapshot(); }); });