We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ae6304 commit 9f89a07Copy full SHA for 9f89a07
test/unit/core/plugins/oas3/helpers.js
@@ -14,8 +14,10 @@ describe("isOAS3", function () {
14
expect(isOAS3Shorthand("3.0.0")).toEqual(true)
15
expect(isOAS3Shorthand("3.0.1")).toEqual(true)
16
expect(isOAS3Shorthand("3.0.4")).toEqual(true)
17
- expect(isOAS3Shorthand("3.0.11111")).toEqual(false)
18
- expect(isOAS3Shorthand("3.0.0-rc0")).toEqual(true)
+ expect(isOAS3Shorthand("3.0.11111")).toEqual(true)
+ expect(isOAS3Shorthand("3.0.0-rc0")).toEqual(false)
19
+
20
21
})
22
23
it("should fail for invalid OAS3 version values", function () {
0 commit comments