diff --git a/spec/integration/helpers/start-atom.coffee b/spec/integration/helpers/start-atom.coffee index 9775de8c7..826d8c17e 100644 --- a/spec/integration/helpers/start-atom.coffee +++ b/spec/integration/helpers/start-atom.coffee @@ -18,6 +18,8 @@ ChromedriverStatusURL = "http://localhost:#{ChromedriverPort}#{ChromedriverURLBa pollChromeDriver = (done) -> checkStatus = -> http.get(ChromedriverStatusURL, (response) -> + console.log response.statusCode + if response.statusCode is 200 done() else diff --git a/spec/integration/startup-spec.coffee b/spec/integration/startup-spec.coffee index e0df3ad9b..b7f6425a3 100644 --- a/spec/integration/startup-spec.coffee +++ b/spec/integration/startup-spec.coffee @@ -19,7 +19,7 @@ describe "Starting Atom", -> tempDirPath = temp.mkdirSync("empty-dir") otherTempDirPath = temp.mkdirSync("another-temp-dir") - describe "opening a new file", -> + fdescribe "opening a new file", -> it "opens the parent directory and creates an empty text editor", -> runAtom [path.join(tempDirPath, "new-file")], {ATOM_HOME: AtomHome}, (client) -> client