-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: AnimateGroup/AnimateGroupChild add test files and empty tests
- Loading branch information
Coltin Kifer
committed
Sep 8, 2024
1 parent
279c535
commit c8bba64
Showing
3 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 />); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>, | ||
); | ||
}); | ||
}); |