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
9061eea1
...
9061eea14939b13efc873ccb26f045ae7c516e2c
authored
2012-01-14 11:12:38 +0100
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fixed Tester.renderResults() was returning exit(0) event on failure by default
1 parent
c8d40969
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 @
9061eea
...
...
@@ -461,7 +461,7 @@ var Tester = function(casper, options) {
}
}
if
(
exit
===
true
)
{
casper
.
exit
(
status
||
0
);
casper
.
exit
(
status
||
(
this
.
testResults
.
failed
>
0
?
1
:
0
)
);
}
};
...
...
Please
register
or
sign in
to post a comment