(node: Node)
| 52 | describe('getControlFlowBlocks > @defer blocks', () => { |
| 53 | // Use to narrow down type to `DeferBlockData` for `@defer`-specific tests. |
| 54 | function getDeferBlocks(node: Node): DeferBlockData[] { |
| 55 | return getControlFlowBlocks(node) as DeferBlockData[]; |
| 56 | } |
| 57 | |
| 58 | beforeEach(() => { |
| 59 | TestBed.configureTestingModule({ |
no test coverage detected
searching dependent graphs…