diff --git a/semver/test_range_test.ts b/semver/test_range_test.ts index 1ddc5ffae3a5..ed99681adcc2 100644 --- a/semver/test_range_test.ts +++ b/semver/test_range_test.ts @@ -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"],