for example, I'd like it to handle code like:
define([
'react',
'enzyme',
'../path/to/Component',
], (React, {mount}, Component) => {
const wrapper = mount(
<Component
someProp={true}
otherProp={someVar}
/>
);
});
is that something you plan to support?