Skip to content

Commit

Permalink
show action details and release alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathijn Elhorst committed Dec 22, 2023
1 parent 93b22e0 commit aee48b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "goaldriventest",
"version": "0.0.1",
"version": "1.0.0-alpha",
"description": "Ask AI to test your website with a specific goal",
"parserOptions": {
"sourceType": "module"
Expand Down
2 changes: 1 addition & 1 deletion src/goaldriventest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ async function main() {
if (step !== 0) {
console.log(`Expectation satisfied: ${jsonObject.expectationSatisfied} Frustration level: ${jsonObject.frustrationLevel}`);
}
console.log(`Taking action: ${actionResult}`);
console.log(`Taking action: ${actionResult} (translated from command: ${JSON.stringify(jsonObject.action)})`);
console.log(`Expectation: ${jsonObject.expectation}`);
await new Promise((resolve) =>
setTimeout(resolve, BROWSER_DELAY_MSECS),
Expand Down

0 comments on commit aee48b6

Please sign in to comment.