| 39 | .size() === 1; |
| 40 | |
| 41 | const hasReact = path => ( |
| 42 | hasModule(path, 'React') || |
| 43 | hasModule(path, 'react') || |
| 44 | hasModule(path, 'react/addons') || |
| 45 | hasModule(path, 'react-native') |
| 46 | ); |
| 47 | |
| 48 | // --------------------------------------------------------------------------- |
| 49 | // Finds all variable declarations that call React.createClass |
no test coverage detected