| 7 | const testLink: HTMLAnchorElement | null = document.querySelector('#test_link'); |
| 8 | |
| 9 | interface Test { |
| 10 | windowWidth: number; |
| 11 | windowHeight: number; |
| 12 | platform: { |
| 13 | name: string; |
| 14 | version: string; |
| 15 | }; |
| 16 | devicePixelRatio: number; |
| 17 | id: string; |
| 18 | screenshot: string; |
| 19 | } |
| 20 | |
| 21 | type TestList = {[key: string]: Test[]}; |
| 22 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…