UNPKG

@zohodesk/dot

Version:

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

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