Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/lib/evaluators/__tests__/goal.test.ts
Original file line number Diff line number Diff line change
@@ -62,7 +62,6 @@ describe("Goals Evaluator", () => {
objectives,
},
});
console.log("*** Created goal", result);
return result;
}

@@ -127,8 +126,6 @@ describe("Goals Evaluator", () => {
{ description: "Complete all tasks for Goal Y", completed: false },
]);

console.log("*** Goal Y created");

// Simulate a conversation indicating failure to achieve "Goal Y"
const conversation = (user_id: UUID) => [
{
@@ -153,9 +150,7 @@ describe("Goals Evaluator", () => {
room_id,
};

const response = await evaluator.handler(runtime, message);

console.log("*** Response:", response);
await evaluator.handler(runtime, message);

const goals = await getGoals({
runtime,

0 comments on commit c9ae92e

Please sign in to comment.