mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-09 06:55:03 +00:00
26 lines
391 B
Plaintext
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);
|
|
});
|
|
}
|