Commit 47670b05 by Ahsan Ulhaq

remove unused jasmine tests

parent 0a6b8ae0
......@@ -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')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment