(storage: Storage)
| 159 | } |
| 160 | |
| 161 | function installStorage(storage: Storage): void { |
| 162 | Object.defineProperty(globalThis, 'localStorage', { |
| 163 | configurable: true, |
| 164 | value: storage, |
| 165 | }); |
| 166 | } |
| 167 | |
| 168 | function workspace(id: string, root: string, name: string) { |
| 169 | return { id, root, name, isGitRepo: false, sessionCount: 0 }; |
no outgoing calls
no test coverage detected