UNPKG

@zohodesk/dot

Version:

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

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