From 2a7d35cc39dfc0e1fa979cb79a4378129d1575ae Mon Sep 17 00:00:00 2001 From: Corey Johnson & Kevin Sawicki Date: Fri, 14 Jun 2013 15:43:16 -0700 Subject: [PATCH] Remove spec that was renamed to task-spec.coffee --- spec/stdlib/task-shell-spec.coffee | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 spec/stdlib/task-shell-spec.coffee diff --git a/spec/stdlib/task-shell-spec.coffee b/spec/stdlib/task-shell-spec.coffee deleted file mode 100644 index 4ddee02a3..000000000 --- a/spec/stdlib/task-shell-spec.coffee +++ /dev/null @@ -1,21 +0,0 @@ -Task = require 'task' - -describe "Task shell", -> - describe "populating the window with fake properties", -> - describe "when jQuery is loaded in a child process", -> - it "doesn't log to the console", -> - spyOn(console, 'log') - spyOn(console, 'error') - spyOn(console, 'warn') - - 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() - expect(console.error).not.toHaveBeenCalled() - expect(console.warn).not.toHaveBeenCalled()