Skip to content

Commit

Permalink
Merge pull request #16 from Ant-VAV/master
Browse files Browse the repository at this point in the history
Show full name of tests (fixes #8)
  • Loading branch information
winterbe committed Aug 23, 2017
2 parents 5af204c + 52746fc commit 451d70e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function logTestSuite(suite) {
}

function logTestResult(suite, testResult) {
const name = escape(testResult.title);
const name = escape(testResult.fullName);
const duration = testResult.duration;

console.log("##teamcity[testStarted name='%s']", name);
Expand Down

0 comments on commit 451d70e

Please sign in to comment.