From 7a003f34a8ca3662bc0d1c72cf651ff58daa0cff Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Sun, 21 May 2017 16:06:15 -0400 Subject: [PATCH] extra line of js that is not run for coverage purposes --- src/js/main.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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);