We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22ca98f commit f884838Copy full SHA for f884838
src/version/validate.test.ts
@@ -27,6 +27,10 @@ describe("validateVersion", () => {
27
expect(() => validateVersion("2.19.0-beta.01")).not.toThrow();
28
});
29
30
+ it('should not throw for valid beta "2.19.3-beta.12"', () => {
31
+ expect(() => validateVersion("2.19.3-beta.12")).not.toThrow();
32
+ });
33
+
34
it('should not throw for coerced version "v2.19.0"', () => {
35
expect(() => validateVersion("v2.19.0")).not.toThrow();
36
0 commit comments