(item: InstanceWrapper)
| 925 | } |
| 926 | const enhancers = wrapper.getEnhancersMetadata() || []; |
| 927 | const loadEnhancer = (item: InstanceWrapper) => { |
| 928 | const hostModule = item.host!; |
| 929 | return this.loadInstance( |
| 930 | item, |
| 931 | hostModule.injectables, |
| 932 | hostModule, |
| 933 | this.createResolutionContext(ctx, inquirer), |
| 934 | ); |
| 935 | }; |
| 936 | await Promise.all(enhancers.map(loadEnhancer)); |
| 937 | } |
| 938 |
nothing calls this directly
no test coverage detected