@zohodesk/components
Version:
In this Package, we Provide Some Basic Components to Build Web App
14 lines • 451 B
JavaScript
import React from 'react';
import { render } from '@testing-library/react';
import Animation from "../Animation";
describe('Animation', () => {
test('rendering the defult props', () => {
const {
asFragment
} = render( /*#__PURE__*/React.createElement(Animation, {
isActive: true,
name: "zoomIn"
}, /*#__PURE__*/React.createElement("div", null, " Test Animation")));
expect(asFragment()).toMatchSnapshot();
});
});