Compare commits

...

1 Commits

Author SHA1 Message Date
Claude Bot
a35f721288 Add semver version comparison test
Tests that 1.0.0 < 1.0.1 using Bun.semver.order() API

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-12 04:25:10 +00:00

View File

@@ -0,0 +1,6 @@
import { expect, test } from "bun:test";
test("semver version comparison: 1.0.0 < 1.0.1", () => {
const result = Bun.semver.order("1.0.0", "1.0.1");
expect(result).toBe(-1);
});