()
| 37 | /// <reference types="dom-navigation" /> |
| 38 | |
| 39 | function isFirefox() { |
| 40 | const userAgent = navigator.userAgent.toLowerCase(); |
| 41 | if (userAgent.indexOf('firefox') != -1) { |
| 42 | return true; |
| 43 | } |
| 44 | return false; |
| 45 | } |
| 46 | |
| 47 | describe('withPlatformNavigation feature', () => { |
| 48 | beforeEach(() => { |
no test coverage detected
searching dependent graphs…