UNPKG

@zohodesk/dot

Version:

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

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