()
| 97 | } |
| 98 | |
| 99 | function getTotalProgress(): { ready: number; total: number } { |
| 100 | let ready = 0; |
| 101 | for (const f of RUNTIME_FEATURES) { |
| 102 | if (isFeatureAvailable(f.id)) ready++; |
| 103 | } |
| 104 | return { ready, total: RUNTIME_FEATURES.length }; |
| 105 | } |
| 106 | |
| 107 | function renderSidebar(): void { |
| 108 | const nav = document.getElementById('sidebarNav'); |
no test coverage detected