@@ -16,7 +16,7 @@ describe('Parser', function () {
16
16
</ul>
17
17
` ) ;
18
18
19
- expect ( p . parse ( input ) . Size ( ) ) . toEqual ( 0 ) ;
19
+ expect ( p . Parse ( input ) . Size ( ) ) . toEqual ( 0 ) ;
20
20
} ) ;
21
21
22
22
it ( 'should return an empty array for lists without timesheet class' , ( ) => {
@@ -26,7 +26,7 @@ describe('Parser', function () {
26
26
</ul>
27
27
` ) ;
28
28
29
- expect ( p . parse ( input ) . Size ( ) ) . toEqual ( 0 ) ;
29
+ expect ( p . Parse ( input ) . Size ( ) ) . toEqual ( 0 ) ;
30
30
} ) ;
31
31
32
32
it ( 'should return an empty array for lists with timesheet class but without timesheet-item elements' , ( ) => {
@@ -36,7 +36,7 @@ describe('Parser', function () {
36
36
</ul>
37
37
` ) ;
38
38
39
- expect ( p . parse ( input ) . Size ( ) ) . toEqual ( 0 ) ;
39
+ expect ( p . Parse ( input ) . Size ( ) ) . toEqual ( 0 ) ;
40
40
} ) ;
41
41
42
42
it ( 'should return an array for lists with timesheet class and timesheet-item elements' , ( ) => {
@@ -50,7 +50,7 @@ describe('Parser', function () {
50
50
</ul>
51
51
` ) ;
52
52
53
- expect ( p . parse ( input ) . Size ( ) ) . toEqual ( 1 ) ;
53
+ expect ( p . Parse ( input ) . Size ( ) ) . toEqual ( 1 ) ;
54
54
} ) ;
55
55
56
56
it ( 'should return an array of bubbles for lists with timesheet class and timesheet-item elements' , ( ) => {
@@ -76,7 +76,7 @@ describe('Parser', function () {
76
76
</ul>
77
77
` ) ;
78
78
79
- var output = p . parse ( input ) ;
79
+ var output = p . Parse ( input ) ;
80
80
expect ( output . Size ( ) ) . toEqual ( 1 ) ;
81
81
82
82
var item = output . Next ( ) ;
0 commit comments