| 243 | |
| 244 | it('binds services from component', () => { |
| 245 | @injectable({scope: BindingScope.SINGLETON}) |
| 246 | class MyService { |
| 247 | getValue() { |
| 248 | return 'service-value'; |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | const component: Component = { |
| 253 | services: [MyService], |
nothing calls this directly
no test coverage detected