From 47670b058c261d6259dccadb09ddef33337b7c43 Mon Sep 17 00:00:00 2001 From: Ahsan Ulhaq Date: Mon, 16 Feb 2015 18:23:23 +0500 Subject: [PATCH] remove unused jasmine tests --- lms/static/coffee/spec/calculator_spec.coffee | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lms/static/coffee/spec/calculator_spec.coffee b/lms/static/coffee/spec/calculator_spec.coffee index 1f6f0da732..1dc2898320 100644 --- a/lms/static/coffee/spec/calculator_spec.coffee +++ b/lms/static/coffee/spec/calculator_spec.coffee @@ -91,16 +91,6 @@ describe 'Calculator', -> $('#calculator_input_help').trigger(e); expect($('.help')).toHaveClass 'shown' - describe 'handleKeyUp', -> - it 'on key up of tab button on hint popup it does not hide', -> - calc = @calculator - calc.showHint() - e = jQuery.Event('keyup',{ keyCode: KEY.TAB }) - $(document).activeElement = $('#hint-moreinfo') - calc.handleKeyUpOnHint(e) - expect($('.help')).toHaveClass 'shown' - expect(calc.active_element).toBe($('#hint-moreinfo a:first')) - describe 'selectHint', -> it 'select correct hint item', -> spyOn($.fn, 'focus')