UNPKG

@zohodesk/dot

Version:

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

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