Skip to content

Commit

Permalink
test(oas31): move test out of components (#10300)
Browse files Browse the repository at this point in the history
Refs #10247
  • Loading branch information
char0n authored Feb 17, 2025
1 parent dfa908d commit a8fc30d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ describe("isOAS31", function () {
it("should recognize valid OAS31 version values", function () {
expect(isOAS31Shorthand("3.1.0")).toEqual(true)
expect(isOAS31Shorthand("3.1.1")).toEqual(true)
expect(isOAS31Shorthand("3.1.12")).toEqual(true)
expect(isOAS31Shorthand("3.2.0")).toEqual(false)
expect(isOAS31Shorthand("3.0.0-rc0")).toEqual(false)
})
Expand Down

0 comments on commit a8fc30d

Please sign in to comment.