({ count, tab, registryEntry })
| 420 | }, |
| 421 | |
| 422 | async reload({ count, tab, registryEntry }) { |
| 423 | const bypassCache = registryEntry.options.hard != null ? registryEntry.options.hard : false; |
| 424 | await forCountTabs(count, tab, (tab) => { |
| 425 | chrome.tabs.reload(tab.id, { bypassCache }); |
| 426 | }); |
| 427 | }, |
| 428 | }; |
| 429 | |
| 430 | async function forCountTabs(count, currentTab, callback) { |
nothing calls this directly
no test coverage detected