File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,7 @@ as the object doesn't contains a key of 'c'
2020// Given an empty object
2121// When passed to contains
2222// Then it should return false
23- test ( "contains on empty object returns false" , ( ) => {
24- expect ( contains ( { } , "a" ) ) . toEqual ( false ) ;
25- } ) ;
23+ test . todo ( "contains on empty object returns false" ) ;
2624
2725// Given an object with properties
2826// When passed to contains with an existing property name
Original file line number Diff line number Diff line change @@ -9,9 +9,8 @@ const stop = document.querySelector("#stop");
99let totalSeconds = 0 ;
1010
1111function main ( ) {
12- // add an event listener to the "input" element that will call the counterUpdate function when clicked on or when the user types in the input field.
12+ // add an event listener to the "input" element that will call the counterUpdate function when clicked on
1313 document . getElementById ( "alarmSet" ) . addEventListener ( "click" , counterUpdate ) ;
14- document . getElementById ( "alarmSet" ) . addEventListener ( "keyup" , counterUpdate ) ;
1514}
1615
1716// define the function that will update the counter
You can’t perform that action at this time.
0 commit comments