Files
bruno/tests/runner/collection-run-report/collection/auth/logout.bru
Sanjai Kumar 4321846dbd feat: Add end-to-end tests for collection run reports (#5562)
* feat: Add end-to-end tests for collection run reports
2025-09-18 15:20:28 +05:30

26 lines
391 B
Plaintext

meta {
name: Logout Request
type: http
seq: 4
}
delete {
url: https://httpbin.org/delete
body: none
auth: none
}
headers {
Accept: application/json
}
tests {
test("This test will also fail", function() {
expect(res.getStatus()).to.equal(500); // Intentional failure
});
test("Status code is 200", function() {
expect(res.getStatus()).to.equal(200);
});
}