File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ type expectedObservable = <T = string>(
15
15
type expectedSubscription = ( marble : string ) => SubscriptionLog ;
16
16
17
17
type RxSandboxInstance = {
18
+ /**
19
+ * Test scheduler created for sandbox instance
20
+ */
21
+ scheduler : TestScheduler ;
18
22
/**
19
23
* Creates a hot observable using marble diagram DSL, or TestMessage.
20
24
*/
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ const rxSandbox: RxSandbox = {
31
31
const scheduler = new TestScheduler ( autoFlush , frameTimeFactor , maxFrameValue ) ;
32
32
33
33
return {
34
+ scheduler,
34
35
hot : scheduler . createHotObservable . bind ( scheduler ) as typeof scheduler . createHotObservable ,
35
36
cold : scheduler . createColdObservable . bind ( scheduler ) as typeof scheduler . createColdObservable ,
36
37
flush : scheduler . flush . bind ( scheduler ) as typeof scheduler . flush ,
You can’t perform that action at this time.
0 commit comments