Skip to content

Commit

Permalink
fix: add browser name to skip reason
Browse files Browse the repository at this point in the history
  • Loading branch information
DudaGod committed Feb 1, 2018
1 parent 772e337 commit b13675e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/report-builder-factory/report-builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ module.exports = class ReportBuilder {
const suiteUrl = suite.getUrl({browserId, baseHost});

const metaInfo = {url: suite.fullUrl, file: suite.file, sessionId};
const testResult = _.assign({suiteUrl, metaInfo}, props);
const testResult = _.assign({suiteUrl, name: browserId, metaInfo}, props);

const node = findOrCreate(this._tree, suite.path.concat(result.state ? result.state.name : NO_STATE));
node.browsers = Array.isArray(node.browsers) ? node.browsers : [];
Expand Down

0 comments on commit b13675e

Please sign in to comment.