From e8bf433c68131d46e6fd8f69625cee93f6278781 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 13 Jun 2013 17:14:17 -0700 Subject: [PATCH] Remove unused class --- spec/stdlib/task-shell-spec.coffee | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/spec/stdlib/task-shell-spec.coffee b/spec/stdlib/task-shell-spec.coffee index f1a539036..4ddee02a3 100644 --- a/spec/stdlib/task-shell-spec.coffee +++ b/spec/stdlib/task-shell-spec.coffee @@ -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()