Files
bruno/tests/proxy/system-pac/fixtures/collection/direct.bru

22 lines
297 B
Plaintext

meta {
name: direct
type: http
seq: 2
}
get {
url: http://localhost:19000/direct
body: none
auth: none
}
assert {
res.status: eq 200
}
tests {
test("request bypassed proxy (system PAC returned DIRECT)", function() {
expect(res.headers['x-proxied']).to.be.undefined;
});
}