From e3245ec4b8d893c78deac91508dacfd131a1646b Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Fri, 3 Oct 2014 15:56:12 -0600 Subject: [PATCH] Remove logging from spec --- spec/workspace-spec.coffee | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/spec/workspace-spec.coffee b/spec/workspace-spec.coffee index a156d80f7..5e91f51a0 100644 --- a/spec/workspace-spec.coffee +++ b/spec/workspace-spec.coffee @@ -3,7 +3,7 @@ temp = require 'temp' Workspace = require '../src/workspace' {View} = require '../src/space-pen-extensions' -describe "Workspace", -> +fdescribe "Workspace", -> workspace = null beforeEach -> @@ -386,7 +386,6 @@ describe "Workspace", -> describe "when there is an active pane item", -> it "sets the title to the pane item's title plus the project path", -> item = atom.workspace.getActivePaneItem() - console.log item.getTitle() expect(document.title).toBe "#{item.getTitle()} - #{atom.project.getPaths()[0]}" describe "when the title of the active pane item changes", -> @@ -421,7 +420,6 @@ describe "Workspace", -> it "updates the title to contain the project's path", -> document.title = null - console.log atom.workspace.getActivePaneItem() workspace2 = atom.workspace.testSerialization() item = atom.workspace.getActivePaneItem() expect(document.title).toBe "#{item.getTitle()} - #{atom.project.getPaths()[0]}"