Remove spec/suite time logging

This isn't really helpful anymore now that the specs run in parallel
This commit is contained in:
Kevin Sawicki 2014-02-07 15:44:08 -08:00
parent cce64cb9e8
commit f01a2a91f9

View File

@ -21,10 +21,6 @@ module.exports.runSpecSuite = (specSuite, logFile, logErrors=true) ->
print: (str) ->
log(str)
onComplete: (runner) ->
log('\n')
timeReporter.logLongestSuites 10, (line) -> log("#{line}\n")
log('\n')
timeReporter.logLongestSpecs 10, (line) -> log("#{line}\n")
fs.closeSync(logStream) if logStream?
atom.exit(runner.results().failedCount > 0 ? 1 : 0)
else