(storage: Storage)
| 27 | } |
| 28 | |
| 29 | function installStorage(storage: Storage): void { |
| 30 | Object.defineProperty(globalThis, 'localStorage', { |
| 31 | configurable: true, |
| 32 | value: storage, |
| 33 | }); |
| 34 | } |
| 35 | |
| 36 | // Singleton — module-level refs + setters. The OS Notification API is absent in |
| 37 | // the test env, so the *enable* path is a no-op; the disable path and the |
no outgoing calls
no test coverage detected