Skip to content

Commit cbbebee

Browse files
committed
Added tests for PropTypes.js
1 parent e13189a commit cbbebee

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

test/PropTypes.test.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import * as PropTypes from '../src/PropTypes';
2+
3+
describe('PropTypes', () => {
4+
it('should have the correct exports', () => {
5+
expect(PropTypes.matchShape).toBeDefined();
6+
expect(PropTypes.matcherShape).toBeDefined();
7+
expect(PropTypes.routerShape).toBeDefined();
8+
});
9+
});

0 commit comments

Comments
 (0)