| 551 | describe('Integration scenarios', () => { |
| 552 | it('service with dependencies', async () => { |
| 553 | @injectable({scope: BindingScope.SINGLETON}) |
| 554 | class DatabaseService { |
| 555 | query() { |
| 556 | return ['data1', 'data2']; |
| 557 | } |
| 558 | } |
| 559 | |
| 560 | @injectable({scope: BindingScope.SINGLETON}) |
| 561 | class UserService { |
nothing calls this directly
no test coverage detected