Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
casperjs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
43b16154
...
43b161543bdae54d8d6482f9804d485aab20dcb8
authored
2012-06-29 11:36:35 +0200
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
merged PR #162 - improve xunit output, include standard text (@steffkes)
1 parent
5b1b57f1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
modules/tester.js
modules/tester.js
View file @
43b1615
...
...
@@ -89,7 +89,7 @@ var Tester = function Tester(casper, options) {
this
.
on
(
'success'
,
function
onSuccess
(
success
)
{
this
.
testResults
.
passes
.
push
(
success
);
this
.
exporter
.
addSuccess
(
fs
.
absolute
(
success
.
file
),
success
.
message
);
this
.
exporter
.
addSuccess
(
fs
.
absolute
(
success
.
file
),
success
.
message
||
success
.
standard
);
});
this
.
on
(
'fail'
,
function
onFail
(
failure
)
{
...
...
Please
register
or
sign in
to post a comment