Fix undefined isPaused$ test failure (afterAll)

This commit is contained in:
Yura
2021-10-05 10:51:37 +02:00
parent f4c50bc7a2
commit 08b79f0595

View File

@@ -51,7 +51,7 @@ export class NotificationComponent implements OnInit, OnDestroy {
/** /**
* Whether this notification's countdown should be paused * Whether this notification's countdown should be paused
*/ */
@Input() public isPaused$: Observable<boolean>; @Input() public isPaused$: Observable<boolean> = observableOf(false);
// Progress bar variables // Progress bar variables
public title: Observable<string>; public title: Observable<string>;