@@ -3,12 +3,12 @@ import { expect } from 'chai'
33
44describe ( 'map tests' , ( ) => {
55
6- it . skip ( 'should add all thenumbes together' , ( ) => {
6+ it . skip ( 'should add all thenumbers together' , ( ) => {
77const numbers = [ 32 , 1 , 21 , 5 , 81 , 333 ] ;
88
99// your code goes here
1010
11- expect ( result ) . to . equal ( 473 ) ;
11+ expect ( results ) . to . equal ( 473 ) ;
1212} ) ;
1313
1414it . skip ( 'should subtract all the numbers' , ( ) => {
@@ -19,7 +19,7 @@ describe('map tests', () => {
1919expect ( results ) . to . equal ( - 170 ) ;
2020} ) ;
2121
22- it . skip ( 'should multiply a list ofnumber ' , ( ) => {
22+ it . skip ( 'should multiply a list ofnumbers ' , ( ) => {
2323const numbers = [ 2 , 3 , 5 , 7 ] ;
2424
2525//initial value is 1
@@ -40,7 +40,6 @@ describe('map tests', () => {
4040it . skip ( 'all second values add together' , ( ) => {
4141const elements = [ [ "a" , 1 ] , [ "b" , 9 ] , [ "c" , 21 ] ] ;
4242
43- // initial value is 10
4443// your code goes here
4544
4645expect ( results ) . to . equal ( 31 ) ;
@@ -71,4 +70,4 @@ describe('map tests', () => {
7170
7271expect ( smallestValue ) . to . deep . equal ( { a :100 } ) ;
7372} ) ;
74- } ) ;
73+ } ) ;