We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I use ajv module to test json schema of api file.
It used to work, but since b1.38.1 (or 1.38 maybe?).
In Test tab:
function testSchema (schema) { const Ajv = require("ajv"); const addFormats = require("ajv-formats"); const ajv = new Ajv(); addFormats(ajv); const validate = ajv.compile(schema); const data = res.getBody(); const valid = validate(data); if (!valid) console.error(validate.errors); return valid; } test("Response schema is valid", function () { return expect(testSchema(schema)).to.be.true; });
No response
The text was updated successfully, but these errors were encountered:
sreelakshmi-bruno
No branches or pull requests
I have checked the following:
Describe the bug
Hi,
I use ajv module to test json schema of api file.
It used to work, but since b1.38.1 (or 1.38 maybe?).
In Test tab:
.bru file to reproduce the bug
No response
Screenshots/Live demo link
The text was updated successfully, but these errors were encountered: