Skip to content

Commit

Permalink
Fix message log, add index to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lalalune committed Mar 2, 2024
1 parent 863f644 commit 0f5b665
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bgent",
"version": "0.0.24",
"version": "0.0.25",
"private": false,
"description": "bgent. because agent was taken.",
"type": "module",
Expand Down
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export * from "./lib";
export * from "./agents";
1 change: 0 additions & 1 deletion src/lib/__tests__/messages.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ describe("Messages Library", () => {
test("formatActors should format actors into a readable string", () => {
const formattedActors = formatActors({ actors });
actors.forEach((actor) => {
console.log("ACTOR IS", actor)
expect(formattedActors).toContain(actor.name);
});
});
Expand Down
9 changes: 9 additions & 0 deletions src/test/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export * from "./cache";
export * from "./constants";
export * from "./createRuntime";
export * from "./data";
export * from "./populateMemories";
export * from "./runAiTest";
export * from "./report";
export * from "./testAction";
export * from "./testEvaluator";

0 comments on commit 0f5b665

Please sign in to comment.