mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
Remove spec that was renamed to task-spec.coffee
This commit is contained in:
committed by
probablycorey
parent
8389698958
commit
2a7d35cc39
@@ -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()
|
||||
Reference in New Issue
Block a user