Skip to content

Commit

Permalink
test(vx-react-spring): add AnimatedGridColumns + AnimatedGridRows tests
Browse files Browse the repository at this point in the history
  • Loading branch information
williaster committed Aug 21, 2020
1 parent 2d135cd commit 98a1f7e
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
7 changes: 7 additions & 0 deletions packages/vx-react-spring/test/AnimatedGridColumns.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { AnimatedGridColumns } from '../src';

describe('AnimatedGridColumns', () => {
it('should be defined', () => {
expect(AnimatedGridColumns).toBeDefined();
});
});
7 changes: 7 additions & 0 deletions packages/vx-react-spring/test/AnimatedGridRows.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { AnimatedGridRows } from '../src';

describe('AnimatedGridRows', () => {
it('should be defined', () => {
expect(AnimatedGridRows).toBeDefined();
});
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import useLineTransitionConfig from '../src/spring-configs/useLineTransitionConfig';

describe('useLineTransitionConfig', () => {
it('should be defined', () => {
expect(useLineTransitionConfig).toBeDefined();
});
});

This file was deleted.

0 comments on commit 98a1f7e

Please sign in to comment.