@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
11 lines • 331 B
JavaScript
import React from 'react';
import { render } from '@testing-library/react';
import Section from "../Section";
describe('Section', () => {
test('rendering the defult props', () => {
const {
asFragment
} = render( /*#__PURE__*/React.createElement(Section, null));
expect(asFragment()).toMatchSnapshot();
});
});