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
feec3f09
...
feec3f09103a08aec5f0b1a6ef9fb74f661b2991
authored
2013-03-20 08:49:44 +0530
by
V Sreekanth
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Log now has the step function name
1 parent
1fe9afcb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
modules/casper.js
modules/casper.js
View file @
feec3f0
...
...
@@ -1383,7 +1383,7 @@ Casper.prototype.runStep = function runStep(step) {
/*jshint maxstatements:20*/
this
.
checkStarted
();
var
skipLog
=
utils
.
isObject
(
step
.
options
)
&&
step
.
options
.
skipLog
===
true
,
stepInfo
=
f
(
"Step %
d/%d"
,
this
.
step
,
this
.
steps
.
length
),
stepInfo
=
f
(
"Step %
s %d/%d"
,
step
.
name
,
this
.
step
,
this
.
steps
.
length
),
stepResult
;
function
getCurrentSuiteId
(
casper
)
{
try
{
...
...
Please
register
or
sign in
to post a comment