fix: tolerate callback parameter values in ParameterRow (via #4873)
* fix: tolerate callback parameter values in ParameterRow * Update 4867.js
This commit is contained in:
17
test/e2e-cypress/tests/bugs/4867.js
Normal file
17
test/e2e-cypress/tests/bugs/4867.js
Normal file
@@ -0,0 +1,17 @@
|
||||
describe("#4867: callback parameter rendering", () => {
|
||||
it("should render parameters correctly", () => {
|
||||
cy
|
||||
.visit("/?url=/documents/bugs/4867.yaml")
|
||||
.get("#operations-default-myOp")
|
||||
.click()
|
||||
.contains("Callbacks")
|
||||
.click()
|
||||
|
||||
.get(".callbacks-container")
|
||||
.contains("http://$request.query.url")
|
||||
.click()
|
||||
|
||||
.get(".parameters-container")
|
||||
.contains("myParam")
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user