()
| 30 | |
| 31 | it(`It should allow a stateless component for the injection`, () => { |
| 32 | const StatelessComponentInjection = () => <div>bar</div>; |
| 33 | const InjectorBob = Injector({ |
| 34 | into: ValidInjectable |
| 35 | })(StatelessComponentInjection); |
| 36 | assertIsValidInjector(InjectorBob); |
| 37 | }); |
| 38 |
nothing calls this directly
no test coverage detected