mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-01 15:50:13 +00:00
Update enzyme-tests.tsx
This commit is contained in:
@@ -868,10 +868,10 @@ function ReactWrapperTest() {
|
||||
|
||||
function test_component_type() {
|
||||
const wrapper1 = shallow(<div><ComponentType stringProp={"S"} numberProp={1} /></div>);
|
||||
wrapper1.find(ComponentType).props().stringProp; // $ExpectType string
|
||||
wrapper1.find<MyComponentProps>(ComponentType).props().stringProp; // $ExpectType string
|
||||
|
||||
const wrapper2 = mount(<div><ComponentType stringProp={"S"} numberProp={1} /></div>);
|
||||
wrapper2.find(ComponentType).props().stringProp; // $ExpectType string
|
||||
wrapper2.find<MyComponentProps>(ComponentType).props().stringProp; // $ExpectType string
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user