@@ -8,12 +8,58 @@ describe('marbleAssert', () => {
8
8
} ) ;
9
9
10
10
describe ( 'TestMessage' , ( ) => {
11
- //noop
11
+ it ( `should throw if expected value isn't array` , ( ) => {
12
+ expect ( ( ) => marbleAssert ( [ ] ) . to . equal ( new SubscriptionLog ( 0 ) as any ) ) . to . throw ( ) ;
13
+ } ) ;
14
+
15
+ it ( 'should pass hot observables' , ( ) => {
16
+ //noop
17
+ } ) ;
18
+
19
+ it ( 'should pass cold observable' , ( ) => {
20
+ //noop
21
+ } ) ;
22
+
23
+ it ( 'should pass hot and cold observables' , ( ) => {
24
+ //noop
25
+ } ) ;
26
+
27
+ it ( 'should pass observable with noop' , ( ) => {
28
+ //noop
29
+ } ) ;
30
+
31
+ it ( 'should pass observable with groups' , ( ) => {
32
+ //noop
33
+ } ) ;
34
+
35
+ it ( 'should pass observable with expand' , ( ) => {
36
+ //noop
37
+ } ) ;
38
+
39
+ it ( 'should pass observable with complete' , ( ) => {
40
+ //noop
41
+ } ) ;
42
+
43
+ it ( 'should pass observable with error' , ( ) => {
44
+ //noop
45
+ } ) ;
46
+
47
+ it ( 'should pass observable with non completion' , ( ) => {
48
+ //noop
49
+ } ) ;
50
+
51
+ it ( 'should pass hot observable with subscription, emit before sub' , ( ) => {
52
+ //noop
53
+ } ) ;
54
+
55
+ it ( 'should pass hot observable with subscription, without emit before sub' , ( ) => {
56
+ //noop
57
+ } ) ;
12
58
} ) ;
13
59
14
60
describe ( 'SubscriptionLog' , ( ) => {
15
61
it ( `should throw if expected value isn't subscription log` , ( ) => {
16
- expect ( ( ) => marbleAssert ( new SubscriptionLog ( 0 , 0 ) ) . to . equal ( 1 as any ) ) . to . throw ( ) ;
62
+ expect ( ( ) => marbleAssert ( new SubscriptionLog ( 0 , 0 ) ) . to . equal ( [ ] as any ) ) . to . throw ( ) ;
17
63
} ) ;
18
64
19
65
it ( 'should pass if subscription matches' , ( ) => {
@@ -47,28 +93,28 @@ describe('marbleAssert', () => {
47
93
expect ( ( ) => marbleAssert ( source ) . to . equal ( expected ) ) . to . throw ( ) ;
48
94
} ) ;
49
95
50
- it ( 'should pass if subscription with unsubscription unmatches' , ( ) => {
96
+ it ( 'should assert if subscription with unsubscription unmatches' , ( ) => {
51
97
const source = new SubscriptionLog ( 10 , 45 ) ;
52
98
const expected = new SubscriptionLog ( 12 , 46 ) ;
53
99
54
100
expect ( ( ) => marbleAssert ( source ) . to . equal ( expected ) ) . to . throw ( ) ;
55
101
} ) ;
56
102
57
- it ( 'should pass if subscription unmatches with unsubscription' , ( ) => {
103
+ it ( 'should assert if subscription unmatches with unsubscription' , ( ) => {
58
104
const source = new SubscriptionLog ( 10 , 45 ) ;
59
105
const expected = new SubscriptionLog ( 12 , 45 ) ;
60
106
61
107
expect ( ( ) => marbleAssert ( source ) . to . equal ( expected ) ) . to . throw ( ) ;
62
108
} ) ;
63
109
64
- it ( 'should pass if unsubscription with subscription unmatches' , ( ) => {
110
+ it ( 'should assert if unsubscription with subscription unmatches' , ( ) => {
65
111
const source = new SubscriptionLog ( 10 , 45 ) ;
66
112
const expected = new SubscriptionLog ( 10 , 46 ) ;
67
113
68
114
expect ( ( ) => marbleAssert ( source ) . to . equal ( expected ) ) . to . throw ( ) ;
69
115
} ) ;
70
116
71
- it ( 'should pass if unsubscription unmatches' , ( ) => {
117
+ it ( 'should assert if unsubscription unmatches' , ( ) => {
72
118
const source = new SubscriptionLog ( Number . POSITIVE_INFINITY , 20 ) ;
73
119
const expected = new SubscriptionLog ( Number . POSITIVE_INFINITY , 30 ) ;
74
120
0 commit comments