Skip to content

Commit

Permalink
feat: add support for jasmine-spec-reporter (displayStacktrace: true)
Browse files Browse the repository at this point in the history
  • Loading branch information
qualityshepherd committed Aug 23, 2017
1 parent 51e9bfc commit ea80f2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parsers/standard.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
parse (output) {
let failedSpecs = new Set()
let match = null
let FAILED_LINES = /at (?:\[object Object\]|Object)\.(?:<anonymous>|it) \((([A-Za-z]:\\)?.*?):.*\)/g
let FAILED_LINES = /at (?:\[object Object\]|Object|UserContext)\.(?:<anonymous>|it) \((([A-Za-z]:\\)?.*?):.*\)/g
while (match = FAILED_LINES.exec(output)) { // eslint-disable-line no-cond-assign
// windows output includes stack traces from
// webdriver so we filter those out here
Expand Down

0 comments on commit ea80f2c

Please sign in to comment.