@@ -36,4 +36,31 @@ describe('index', () => {
36
36
it ( 'should export constants' , ( ) => {
37
37
expect ( index . EMPTY ) . to . exist ;
38
38
} ) ;
39
+
40
+ it ( 'should export static observable creator functions' , ( ) => {
41
+ expect ( index . bindCallback ) . to . exist ;
42
+ expect ( index . bindNodeCallback ) . to . exist ;
43
+ expect ( index . combineLatest ) . to . exist ;
44
+ expect ( index . concat ) . to . exist ;
45
+ expect ( index . defer ) . to . exist ;
46
+ expect ( index . empty ) . to . exist ;
47
+ expect ( index . forkJoin ) . to . exist ;
48
+ expect ( index . from ) . to . exist ;
49
+ expect ( index . fromEvent ) . to . exist ;
50
+ expect ( index . fromEventPattern ) . to . exist ;
51
+ expect ( index . generate ) . to . exist ;
52
+ expect ( index . iif ) . to . exist ;
53
+ expect ( index . interval ) . to . exist ;
54
+ expect ( index . merge ) . to . exist ;
55
+ expect ( index . never ) . to . exist ;
56
+ expect ( index . of ) . to . exist ;
57
+ expect ( index . onErrorResumeNext ) . to . exist ;
58
+ expect ( index . pairs ) . to . exist ;
59
+ expect ( index . race ) . to . exist ;
60
+ expect ( index . range ) . to . exist ;
61
+ expect ( index . throwError ) . to . exist ;
62
+ expect ( index . timer ) . to . exist ;
63
+ expect ( index . using ) . to . exist ;
64
+ expect ( index . zip ) . to . exist ;
65
+ } ) ;
39
66
} ) ;
0 commit comments