You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I try to migrate my API tests scripts from postman
I have a lot with a test which valid the Json shema of the response.
In Postman I wrote this like that
var schema =
{json model schema}
;
const response = pm.response.json();
pm.test('Schema is valid', () => {
pm.expect(response).to.have.jsonSchema(schema);
});
Hello,
I try to migrate my API tests scripts from postman
I have a lot with a test which valid the Json shema of the response.
In Postman I wrote this like that
and it doesn't work with Bruno
I have seen a solution in https://medium.com/@jagdalebr/brunos-api-adventure-7937abb70d47
Is it possible to intégrate this to the Import from postman tool and the Bruno's translator ?
Thanks
The text was updated successfully, but these errors were encountered: