Sha256: ba70646d676d1226c53433d95a494a5a04a8206df22c36d59460aa915ba63512

Contents?: true

Size: 604 Bytes

Versions: 19

Compression:

Stored size: 604 Bytes

Contents

class Teabag.Reporters.Console extends Teabag.Reporters.Console

  constructor: (env) ->
    super
    env.log(@reportSpecResults)
    env.testDone(@reportSpecResults)
    env.done(@reportRunnerResults)
    @reportRunnerStarting()


  reportRunnerStarting: ->
    @currentAssertions = []
    @log
      type:  "runner"
      total: null
      start: JSON.parse(JSON.stringify(@start))


  reportSpecResults: (result) =>
    unless typeof(result.total) == "number"
      @currentAssertions.push(result)
      return
    result.assertions = @currentAssertions
    @currentAssertions = []
    super(result)

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
teabag-0.7.3 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.7.2 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.7.1 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.7.0 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.6.0 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.5.5 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.5.4 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.5.3 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.5.2 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.5.1 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.5.0 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.4.6 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.4.5 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.4.4 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.4.3 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.4.2 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.4.1 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.4.0 app/assets/javascripts/teabag/qunit/reporters/console.coffee
teabag-0.3.6 app/assets/javascripts/teabag/qunit/reporters/console.coffee