()
| 16 | displayTime = signal(''); |
| 17 | |
| 18 | ngOnInit() { |
| 19 | this.updateTime(); |
| 20 | this.updateInterval = setInterval(() => { |
| 21 | this.updateTime(); |
| 22 | }, 10000); // Update every 10 seconds |
| 23 | } |
| 24 | |
| 25 | ngOnDestroy() { |
| 26 | if (this.updateInterval) { |
nothing calls this directly
no test coverage detected