Skip to content

Commit d1f57f3

Browse files
fix: update test URLs to use local server and add query parameters for improved testing
1 parent 0f33194 commit d1f57f3

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

packages/bruno-tests/collection/scripting/api/bru/cookies/Redirect Cookie Save.bru

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,22 @@ meta {
55
}
66

77
get {
8-
url: https://httpbun.com/mix/s=302/c=foo:bar/r=https%3A%2F%2Fhttpbun.org%2Fget
8+
url: http://localhost:8081/api/mix?s=302&c=foo:bar&r=http://127.0.0.1:8081/query
99
body: none
1010
auth: inherit
1111
}
1212

13+
params:query {
14+
s: 302
15+
c: foo:bar
16+
r: http://127.0.0.1:8081/query
17+
}
18+
1319
tests {
1420
const jar = bru.cookies.jar()
1521

1622
const cookieData = await jar.getCookie(
17-
"https://httpbun.com",
23+
"http://localhost:8081",
1824
"foo"
1925
);
2026

0 commit comments

Comments
 (0)