()
| 423 | } |
| 424 | |
| 425 | static async collectDevToolsData(): Promise<DevToolsData> { |
| 426 | const [ |
| 427 | detector, |
| 428 | dynamic, |
| 429 | filter, |
| 430 | staticThemesText, |
| 431 | ] = await Promise.all([ |
| 432 | DevTools.getDetectorHintsText(), |
| 433 | DevTools.getDynamicThemeFixesText(), |
| 434 | DevTools.getInversionFixesText(), |
| 435 | DevTools.getStaticThemesText(), |
| 436 | ]); |
| 437 | return { |
| 438 | detector, |
| 439 | dynamic, |
| 440 | filter, |
| 441 | static: staticThemesText, |
| 442 | }; |
| 443 | } |
| 444 | |
| 445 | private static async getActiveTabInfo(): Promise<TabInfo> { |
| 446 | await Extension.loadData(); |
no test coverage detected