Remove unused class

This commit is contained in:
Kevin Sawicki
2013-06-13 17:14:17 -07:00
committed by probablycorey
parent 12b5c43d85
commit e8bf433c68

View File

@@ -7,15 +7,13 @@ describe "Task shell", ->
spyOn(console, 'log')
spyOn(console, 'error')
spyOn(console, 'warn')
class JQueryTask extends Task
constructor: -> super('fixtures/jquery-task-handler.coffee')
started: -> @callWorkerMethod('load')
loaded: (@jqueryLoaded) ->
task = new JQueryTask()
task.start()
waitsFor "child process to start and jquery to be required", 5000, ->
task.jqueryLoaded
runs ->
expect(task.jqueryLoaded).toBeTruthy()
expect(console.log).not.toHaveBeenCalled()