File tree Expand file tree Collapse file tree 1 file changed +0
-32
lines changed Expand file tree Collapse file tree 1 file changed +0
-32
lines changed Original file line number Diff line number Diff line change @@ -197,38 +197,6 @@ var ReactTestUtils = {
197197 return constructor === type ;
198198 } ,
199199
200- // TODO: deprecate? It's undocumented and unused.
201- isCompositeComponentElement : function ( inst ) {
202- if ( ! React . isValidElement ( inst ) ) {
203- return false ;
204- }
205- // We check the prototype of the type that will get mounted, not the
206- // instance itself. This is a future proof way of duck typing.
207- var prototype = inst . type . prototype ;
208- return (
209- typeof prototype . render === 'function' &&
210- typeof prototype . setState === 'function'
211- ) ;
212- } ,
213-
214- // TODO: deprecate? It's undocumented and unused.
215- isCompositeComponentElementWithType : function ( inst , type ) {
216- var internalInstance = ReactInstanceMap . get ( inst ) ;
217- var constructor = internalInstance . _currentElement . type ;
218-
219- return ! ! ( ReactTestUtils . isCompositeComponentElement ( inst ) &&
220- constructor === type ) ;
221- } ,
222-
223- // TODO: deprecate? It's undocumented and unused.
224- getRenderedChildOfCompositeComponent : function ( inst ) {
225- if ( ! ReactTestUtils . isCompositeComponent ( inst ) ) {
226- return null ;
227- }
228- var internalInstance = ReactInstanceMap . get ( inst ) ;
229- return internalInstance . _renderedComponent . getPublicInstance ( ) ;
230- } ,
231-
232200 findAllInRenderedTree : function ( inst , test ) {
233201 if ( ! inst ) {
234202 return [ ] ;
You can’t perform that action at this time.
0 commit comments