()
| 144 | |
| 145 | it('should not call done multiple times in sync test', (done) => { |
| 146 | const testFn = () => { |
| 147 | Zone.current.run(() => {}); |
| 148 | Zone.current.run(() => {}); |
| 149 | }; |
| 150 | let doneCalledCount = 0; |
| 151 | const testZoneSpec = new AsyncTestZoneSpec( |
| 152 | () => { |
nothing calls this directly
no test coverage detected
searching dependent graphs…