Investigate timeouts issues (again)

This commit is contained in:
Antonio Scandurra 2015-04-08 08:36:46 +02:00
parent 8720af76a4
commit dee626ab69
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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