diff --git a/docs/webapi/say.mustache b/docs/webapi/say.mustache index f1e139aa0..613c4e2c9 100644 --- a/docs/webapi/say.mustache +++ b/docs/webapi/say.mustache @@ -7,4 +7,3 @@ I.say('This is by default'); //cyan is used ``` @param {string} text expected on console log. @param {string} [color='cyan'] color you want to use. -⚠️ returns a _promise_ which is synchronized internally by recorder diff --git a/lib/actor.js b/lib/actor.js index 94b66ec2b..083021772 100644 --- a/lib/actor.js +++ b/lib/actor.js @@ -13,14 +13,14 @@ const output = require('./output'); */ class Actor { /** - * add print comment method` + * add print comment method * @param {string} msg * @param {string} color - * @return {Promise | undefined} + * @return {void} * @inner */ say(msg, color = 'cyan') { - return recorder.add(`say ${msg}`, () => { + recorder.add(`say ${msg}`, () => { event.emit(event.step.comment, msg); output.say(msg, `${color}`); });