@@ -4,19 +4,19 @@ describe('sumAll', () => {
4
4
test ( 'sums numbers within the range' , ( ) => {
5
5
expect ( sumAll ( 1 , 4 ) ) . toEqual ( 10 ) ;
6
6
} ) ;
7
- test . skip ( 'works with large numbers' , ( ) => {
7
+ test ( 'works with large numbers' , ( ) => {
8
8
expect ( sumAll ( 1 , 4000 ) ) . toEqual ( 8002000 ) ;
9
9
} ) ;
10
- test . skip ( 'works with larger number first' , ( ) => {
10
+ test ( 'works with larger number first' , ( ) => {
11
11
expect ( sumAll ( 123 , 1 ) ) . toEqual ( 7626 ) ;
12
12
} ) ;
13
- test . skip ( 'returns ERROR with negative numbers' , ( ) => {
13
+ test ( 'returns ERROR with negative numbers' , ( ) => {
14
14
expect ( sumAll ( - 10 , 4 ) ) . toEqual ( 'ERROR' ) ;
15
15
} ) ;
16
- test . skip ( 'returns ERROR with non-number parameters' , ( ) => {
16
+ test ( 'returns ERROR with non-number parameters' , ( ) => {
17
17
expect ( sumAll ( 10 , "90" ) ) . toEqual ( 'ERROR' ) ;
18
18
} ) ;
19
- test . skip ( 'returns ERROR with non-number parameters' , ( ) => {
19
+ test ( 'returns ERROR with non-number parameters' , ( ) => {
20
20
expect ( sumAll ( 10 , [ 90 , 1 ] ) ) . toEqual ( 'ERROR' ) ;
21
21
} ) ;
22
22
} ) ;
0 commit comments