mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
7 lines
213 B
TypeScript
7 lines
213 B
TypeScript
import { semver } from "bun";
|
|
import { expect, test } from "bun:test";
|
|
|
|
test("semver with multiple tags work properly", () => {
|
|
expect(semver.satisfies("3.4.5", ">=3.3.0-beta.1 <3.4.0-beta.3")).toBeFalse();
|
|
});
|