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
9b1dc926
...
9b1dc9264dcf4249a1fc78764aa024d790e48117
authored
2013-03-06 16:43:57 +0100
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fixed possible uncaught error when calling abort()
1 parent
88a51c84
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 @
9b1dc92
...
...
@@ -926,7 +926,7 @@ Tester.prototype.comment = function comment(message) {
Tester
.
prototype
.
done
=
function
done
()
{
"use strict"
;
/*jshint maxstatements:20, maxcomplexity:20*/
var
planned
,
config
=
this
.
currentSuite
.
config
;
var
planned
,
config
=
this
.
currentSuite
&&
this
.
currentSuite
.
config
||
{}
;
if
(
utils
.
isNumber
(
arguments
[
0
]))
{
this
.
casper
.
warn
(
'done() `planned` arg is deprecated as of 1.1'
);
planned
=
arguments
[
0
];
...
...
Please
register
or
sign in
to post a comment