UNPKG

@zohodesk/dot

Version:

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

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