diff --git a/test/index.spec.tsx b/test/Animate.spec.tsx similarity index 100% rename from test/index.spec.tsx rename to test/Animate.spec.tsx diff --git a/test/AnimateGroup.spec.tsx b/test/AnimateGroup.spec.tsx new file mode 100644 index 0000000..528f326 --- /dev/null +++ b/test/AnimateGroup.spec.tsx @@ -0,0 +1,9 @@ +import React from 'react'; +import { render } from '@testing-library/react'; +import AnimateGroup from '../src/AnimateGroup'; + +describe('AnimateGroup', () => { + it('Should render AnimateGroup', () => { + render(); + }); +}); diff --git a/test/AnimateGroupChild.spec.tsx b/test/AnimateGroupChild.spec.tsx new file mode 100644 index 0000000..d46bb5b --- /dev/null +++ b/test/AnimateGroupChild.spec.tsx @@ -0,0 +1,13 @@ +import React from 'react'; +import { render } from '@testing-library/react'; +import AnimateGroupChild from '../src/AnimateGroupChild'; + +describe('AnimateGroupChild', () => { + it('Should render AnimateGroupChild', () => { + render( + +
+ , + ); + }); +});