Skip to content

Commit

Permalink
[gradient] add initial tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hshoff committed Jul 6, 2017
1 parent 74fe1c1 commit 79aab76
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/vx-gradient/test/LinearGradient.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { LinearGradient } from '../src';

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

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

0 comments on commit 79aab76

Please sign in to comment.