( udid: string, stamp: string, includeButtons = true, )
| 159 | } |
| 160 | |
| 161 | function buildChromeUrl( |
| 162 | udid: string, |
| 163 | stamp: string, |
| 164 | includeButtons = true, |
| 165 | ): string { |
| 166 | return buildAuthenticatedAssetUrl( |
| 167 | `/api/simulators/${udid}/chrome.png`, |
| 168 | stamp, |
| 169 | includeButtons ? undefined : { buttons: "false" }, |
| 170 | ); |
| 171 | } |
| 172 | |
| 173 | function buildChromeButtonUrl( |
| 174 | udid: string, |
no test coverage detected