Skip to content

Commit

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

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

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

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

0 comments on commit 0af9877

Please sign in to comment.