Skip to content

Commit d3d7853

Browse files
fix: update test expectations for 2.0.1 version string
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e5180eb commit d3d7853

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/cli.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ describe("Claude Conductor CLI", () => {
5050
cwd: __dirname + "/..",
5151
encoding: "utf8",
5252
});
53-
expect(output.trim()).toBe("2.0.0");
53+
expect(output.trim()).toBe("2.0.1");
5454
});
5555

5656
test("should NOT overwrite JOURNAL.md without --force", async () => {
@@ -148,8 +148,8 @@ describe("Claude Conductor CLI", () => {
148148
const claudeContent = await fs.readFile(path.join(tempDir, "CLAUDE.md"), "utf8");
149149
const conductorContent = await fs.readFile(path.join(tempDir, "CONDUCTOR.md"), "utf8");
150150

151-
expect(claudeContent).toContain("<!-- Generated by Claude Conductor v2.0.0 -->");
152-
expect(conductorContent).toContain("<!-- Generated by Claude Conductor v2.0.0 -->");
151+
expect(claudeContent).toContain("<!-- Generated by Claude Conductor v2.0.1 -->");
152+
expect(conductorContent).toContain("<!-- Generated by Claude Conductor v2.0.1 -->");
153153
});
154154

155155
// === BACKUP/RESTORE UPGRADE SYSTEM TESTS ===

0 commit comments

Comments
 (0)