testdriverai 4.0.56 → 4.0.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/lib/config.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -838,7 +838,7 @@ let run = async (file, overwrite = false) => {
|
|
|
838
838
|
|
|
839
839
|
for (const step of ymlObj.steps) {
|
|
840
840
|
log.log("info", ``, null);
|
|
841
|
-
log.log("info", chalk.
|
|
841
|
+
log.log("info", chalk.yellow(`${step.prompt || "no prompt"}`), null);
|
|
842
842
|
|
|
843
843
|
executionHistory.push({
|
|
844
844
|
prompt: step.prompt,
|
package/lib/config.js
CHANGED