Skip to content

Commit

Permalink
pass tests
Browse files Browse the repository at this point in the history
  • Loading branch information
toyamarinyon committed Dec 17, 2024
1 parent 808f22a commit ed8de34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/(playground)/p/[agentId]/canary/lib/graph.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ describe("deriveFlows", () => {

describe("isLatestVersion", () => {
test("latest version", () => {
expect(isLatestVersion({ version: "20241213" } as Graph)).toBe(true);
expect(isLatestVersion({ version: "20241217" } as Graph)).toBe(true);
});
test("old version", () => {
expect(isLatestVersion({} as Graph)).toBe(false);
Expand Down Expand Up @@ -203,7 +203,7 @@ describe("migrateGraph", () => {
],
artifacts: [],
} as unknown as Graph);
expect(after.version).toBe("20241213");
expect(after.version).toBe("20241217");
expect(after.nodes[0].content.type).toBe("files");
});
});

0 comments on commit ed8de34

Please sign in to comment.