Remove unused specFilter method

This commit is contained in:
Kevin Sawicki
2014-02-10 21:03:22 -08:00
parent 4c60c40eb8
commit 0eb874864c

View File

@@ -84,19 +84,6 @@ class AtomReporter extends View
reportSpecStarting: (spec) ->
@specStarted(spec)
specFilter: (spec) ->
globalFocusPriority = jasmine.getEnv().focusPriority
parent = spec.parentSuite ? spec.suite
if !globalFocusPriority
true
else if spec.focusPriority >= globalFocusPriority
true
else if not parent
false
else
@specFilter(parent)
handleEvents: ->
$(document).on "click", ".spec-toggle", ({currentTarget}) =>
element = $(currentTarget)