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