Skip to content

Commit

Permalink
test: AnimateGroup/AnimateGroupChild add test files and empty tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Coltin Kifer committed Sep 8, 2024
1 parent 279c535 commit c8bba64
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
File renamed without changes.
9 changes: 9 additions & 0 deletions test/AnimateGroup.spec.tsx
Original file line number Diff line number Diff line change
@@ -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(<AnimateGroup />);
});
});
13 changes: 13 additions & 0 deletions test/AnimateGroupChild.spec.tsx
Original file line number Diff line number Diff line change
@@ -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(
<AnimateGroupChild>
<div />
</AnimateGroupChild>,
);
});
});

0 comments on commit c8bba64

Please sign in to comment.