Skip to content

Commit

Permalink
Added tests for PropTypes.js
Browse files Browse the repository at this point in the history
  • Loading branch information
chentsulin committed Dec 4, 2016
1 parent e13189a commit cbbebee
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/PropTypes.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import * as PropTypes from '../src/PropTypes';

describe('PropTypes', () => {
it('should have the correct exports', () => {
expect(PropTypes.matchShape).toBeDefined();
expect(PropTypes.matcherShape).toBeDefined();
expect(PropTypes.routerShape).toBeDefined();
});
});

0 comments on commit cbbebee

Please sign in to comment.