Skip to content

Commit

Permalink
test(semver): add test for fix #4350 (#4352)
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k authored Feb 19, 2024
1 parent 5052851 commit 8205edc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions semver/test_range_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ Deno.test("testRange() returns true when the version is in the range", async (t)
[">=1.2.1 >=1.2.3", "1.2.3"],
[">=1.2", "1.2.8"],
[">1.2", "1.3.0"],
[">1.x.0", "2.0.0"],
["^1.2.3", "1.8.1"],
["^0.1.2", "0.1.2"],
["^0.1", "0.1.2"],
Expand Down

0 comments on commit 8205edc

Please sign in to comment.