(parentWindow, srcFileBasename)
| 272 | * @return {string} |
| 273 | */ |
| 274 | export function getDevelopmentBootstrapBaseUrl(parentWindow, srcFileBasename) { |
| 275 | return ( |
| 276 | overrideBootstrapBaseUrl || |
| 277 | getAdsLocalhost(parentWindow) + |
| 278 | '/dist.3p/' + |
| 279 | (mode.isMinified() |
| 280 | ? `${mode.version()}/${srcFileBasename}` |
| 281 | : `current/${srcFileBasename}.max`) + |
| 282 | '.html' |
| 283 | ); |
| 284 | } |
| 285 | |
| 286 | /** |
| 287 | * @param {!Window} win |
no test coverage detected