()
| 20 | } |
| 21 | |
| 22 | async function playAlertSound(): Promise<void> { |
| 23 | try { |
| 24 | await execAsync(`afplay ${SOUND_FILE}`); |
| 25 | console.log('🔊 Alert sound played'); |
| 26 | } catch (error) { |
| 27 | console.error('❌ Failed to play alert sound:', error); |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | let iter = 0; |
| 32 |
no test coverage detected