()
| 33 | import {TestBed} from '@angular/core/testing'; |
| 34 | |
| 35 | function isFirefox() { |
| 36 | const userAgent = navigator.userAgent.toLowerCase(); |
| 37 | if (userAgent.indexOf('firefox') != -1) { |
| 38 | return true; |
| 39 | } |
| 40 | return false; |
| 41 | } |
| 42 | |
| 43 | import {NG_STATUS_CLASSES} from '../../compat/public_api'; |
| 44 | import { |
no test coverage detected
searching dependent graphs…