UNPKG

@zohodesk/dot

Version:

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

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