ИШ
Size: a a a
ИШ
ИШ
NV
const jsonBody = pm.response.json();
pm.test("Check response body", () => {
const expectedValue = {
a: "string",
b: [1, 2, 3],
c: {
d: true,
}
};
pm.expect(jsonBody).to.deep.include(expectedValue);
});
ИШ
NV
ИШ
ИШ
ИШ
ИШ
ИШ
H
pm.test("Your test name", function () {
pm.expect(365).to.be.a('number');
});ИШ
NV
ИШ
M
VM
M
А2
NV