From c8bba6465d1b136d0326629ed7763077c5ff2ae8 Mon Sep 17 00:00:00 2001 From: Coltin Kifer Date: Sun, 8 Sep 2024 08:20:02 +0000 Subject: [PATCH] test: AnimateGroup/AnimateGroupChild add test files and empty tests --- test/{index.spec.tsx => Animate.spec.tsx} | 0 test/AnimateGroup.spec.tsx | 9 +++++++++ test/AnimateGroupChild.spec.tsx | 13 +++++++++++++ 3 files changed, 22 insertions(+) rename test/{index.spec.tsx => Animate.spec.tsx} (100%) create mode 100644 test/AnimateGroup.spec.tsx create mode 100644 test/AnimateGroupChild.spec.tsx 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( + +
+ , + ); + }); +});