Skip to content

Commit cc7865a

Browse files
committed
fix(testscheduler): setup hot observable when flush
1 parent 7ef98d7 commit cc7865a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/scheduler/TestScheduler.ts

+9
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@ class TestScheduler extends VirtualTimeScheduler {
1919
super(VirtualAction, Number.POSITIVE_INFINITY);
2020
}
2121

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+
2231
public getMarbles<T = string>(observable: Observable<T>, unsubscriptionMarbles: string | null = null) {
2332
if (this.autoFlush) {
2433
throw new Error('not implemented');

0 commit comments

Comments
 (0)