Skip to content

reactorcore/karma-taser-reporter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 

Repository files navigation

karma-taser-reporter

On run complete, sends test results to the taserReporter callback function specified in the config.

[{
  browser: {
    name: String,
    fullName: String
  },
  testResults: {
    passed: [{
      id: String,
      description: String,
      suite: [String],
      success: Boolean,
      skipped: Boolean,
      time: Number,
      log: [String]
    }],
    skipped: [{
      id: String,
      description: String,
      suite: [String],
      success: Boolean,
      skipped: Boolean,
      time: Number,
      log: [String]
    }],
    failed: [{
      id: String,
      description: String,
      suite: [String],
      success: Boolean,
      skipped: Boolean,
      time: Number,
      log: [String]
    }]
  },
  errors: [String]
}]