()
| 54 | |
| 55 | let _isTestExecution = false; |
| 56 | export function isTestExecution(): boolean { |
| 57 | return _isTestExecution || isUnitTestExecution(); |
| 58 | } |
| 59 | export function setTestExecution(enabled: boolean) { |
| 60 | _isTestExecution = enabled; |
| 61 | } |
no test coverage detected