Postman | Windows

– usually no body

– for file uploads or simple forms 6. Testing & Assertions (Basic Scripts) In the Tests tab (JavaScript): postman windows

// Status code check pm.test("Status is 200", () => pm.response.to.have.status(200); ); // Response time under 200ms pm.test("Response time < 200ms", () => pm.expect(pm.response.responseTime).to.be.below(200); ); – usually no body – for file uploads or simple forms 6