Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
feat(results): forward passedExpectations and properties (#268)
  • Loading branch information
johnjbarton committed May 26, 2020
1 parent 27c9dcf commit ad1d7dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/adapter.js
Expand Up @@ -231,7 +231,9 @@ function KarmaReporter (tc, jasmineEnv) {
success: specResult.failedExpectations.length === 0,
suite: [],
time: skipped ? 0 : new _Date().getTime() - startTimeCurrentSpec,
executedExpectationsCount: specResult.failedExpectations.length + specResult.passedExpectations.length
executedExpectationsCount: specResult.failedExpectations.length + specResult.passedExpectations.length,
passedExpectations: specResult.passedExpectations,
properties: specResult.properties
}

// generate ordered list of (nested) suite names
Expand Down

0 comments on commit ad1d7dd

Please sign in to comment.