| 29 | describe('getNgModuleScope method', () => { |
| 30 | it('should include empty scope for a module without any import/declarations/exports', () => { |
| 31 | @NgModule({}) |
| 32 | class MainModule {} |
| 33 | |
| 34 | const ans = depsTracker.getNgModuleScope(MainModule as NgModuleType); |
| 35 |
nothing calls this directly
no test coverage detected
searching dependent graphs…