Disable focus methods on CI

This commit is contained in:
Antonio Scandurra 2015-04-08 10:27:03 +02:00
parent 32909efd7e
commit b08bd79e02
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ describe "Starting Atom", ->
tempDirPath = temp.mkdirSync("empty-dir")
otherTempDirPath = temp.mkdirSync("another-temp-dir")
fdescribe "opening a new file", ->
describe "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

View File

@ -7,7 +7,7 @@ module.exports.runSpecSuite = (specSuite, logFile, logErrors=true) ->
{TerminalReporter} = require 'jasmine-tagged'
disableFocusMethods() if process.env.JANKY_SHA1
disableFocusMethods() if process.env.JANKY_SHA1 or process.env.CI
TimeReporter = require './time-reporter'
timeReporter = new TimeReporter()