diff --git a/src/js/main.js b/src/js/main.js index acd0405..24813d9 100644 --- a/src/js/main.js +++ b/src/js/main.js @@ -4,4 +4,9 @@ $('body').append('
added through jquery
'); }); }); -})(jQuery); \ No newline at end of file + $(function(){ + $('div').click(function(){ + $('body').append('this also worked!!!'); //coverage report should show this line was not run + }); + }) +})(jQuery);