| 68 | |
| 69 | it('binds providers from component', () => { |
| 70 | class MyProvider implements Provider<string> { |
| 71 | value() { |
| 72 | return 'my-value'; |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | const component: Component = { |
| 77 | providers: { |
nothing calls this directly
no test coverage detected