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
7b334b3e
...
7b334b3e5f025a34ac0679988d806dc47fea7fdd
authored
2012-01-11 09:35:22 +0100
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
enhanced formatting of tester results
1 parent
c1315256
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
modules/tester.js
modules/tester.js
View file @
7b334b3
...
...
@@ -408,7 +408,7 @@ var Tester = function(casper, options) {
if
(
failures
.
length
===
0
)
{
return
;
}
casper
.
echo
(
f
(
"\nDetails for the %d failed test
s:\n"
,
failures
.
length
),
"PARAMETER"
);
casper
.
echo
(
f
(
"\nDetails for the %d failed test
%s:\n"
,
failures
.
length
,
failures
.
length
>
1
?
"s"
:
""
),
"PARAMETER"
);
failures
.
forEach
(
function
(
failure
)
{
casper
.
echo
(
f
(
'In %s:'
,
failure
.
file
));
var
message
;
...
...
Please
register
or
sign in
to post a comment