(args)
| 55 | } |
| 56 | |
| 57 | runInjections(args) { |
| 58 | const { registration } = args; |
| 59 | const { injectables, injections } = registration; |
| 60 | |
| 61 | const elements = compose( |
| 62 | filter(x => x !== null && x !== undefined), |
| 63 | map(x => x.inject()), |
| 64 | uniqBy(`injectorId`) |
| 65 | )(injections); |
| 66 | |
| 67 | injectables.forEach(injectable => { |
| 68 | injectable.receive(elements); |
| 69 | }); |
| 70 | } |
| 71 | |
| 72 | removeRegistration(args) { |
| 73 | const { registration } = args; |
no test coverage detected