We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ef98d7 commit cc7865aCopy full SHA for cc7865a
src/scheduler/TestScheduler.ts
@@ -19,6 +19,15 @@ class TestScheduler extends VirtualTimeScheduler {
19
super(VirtualAction, Number.POSITIVE_INFINITY);
20
}
21
22
+ public flush(): void {
23
+ const hotObservables = this.hotObservables;
24
+ while (hotObservables.length > 0) {
25
+ hotObservables.shift()!.setup();
26
+ }
27
+
28
+ super.flush();
29
30
31
public getMarbles<T = string>(observable: Observable<T>, unsubscriptionMarbles: string | null = null) {
32
if (this.autoFlush) {
33
throw new Error('not implemented');
0 commit comments