Commit 134b55e1 134b55e1d4a1495a78fec8b909dd6ed7aeaccc57 by V Sreekanth

Adding check for anonymous functions.

As suggested by @n1k0
1 parent feec3f09
...@@ -1383,7 +1383,7 @@ Casper.prototype.runStep = function runStep(step) { ...@@ -1383,7 +1383,7 @@ Casper.prototype.runStep = function runStep(step) {
1383 /*jshint maxstatements:20*/ 1383 /*jshint maxstatements:20*/
1384 this.checkStarted(); 1384 this.checkStarted();
1385 var skipLog = utils.isObject(step.options) && step.options.skipLog === true, 1385 var skipLog = utils.isObject(step.options) && step.options.skipLog === true,
1386 stepInfo = f("Step %s %d/%d", step.name, this.step, this.steps.length), 1386 stepInfo = f("Step %s %d/%d", step.name || "anonymous", this.step, this.steps.length),
1387 stepResult; 1387 stepResult;
1388 function getCurrentSuiteId(casper) { 1388 function getCurrentSuiteId(casper) {
1389 try { 1389 try {
......