Skip to content

Commit 09d2458

Browse files
committed
t0112: update
1 parent 7e3d50a commit 09d2458

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

tests/path_gateway_unixfs_test.go

+8-4
Original file line numberDiff line numberDiff line change
@@ -446,13 +446,15 @@ func TestCors(t *testing.T) {
446446
Response: Expect().
447447
Headers(
448448
Header("Access-Control-Allow-Origin").Equals("*"),
449-
Header("Access-Control-Allow-Methods").Has("GET"),
450-
Header("Access-Control-Allow-Headers").Has("Range"),
449+
Header("Access-Control-Allow-Methods").Has("GET", "HEAD", "OPTIONS"),
450+
Header("Access-Control-Allow-Headers").Has("Content-Type", "Range", "User-Agent", "X-Requested-With"),
451451
Header("Access-Control-Expose-Headers").Has(
452452
"Content-Range",
453453
"Content-Length",
454454
"X-Ipfs-Path",
455455
"X-Ipfs-Roots",
456+
"X-Chunked-Output",
457+
"X-Stream-Output",
456458
),
457459
),
458460
},
@@ -464,13 +466,15 @@ func TestCors(t *testing.T) {
464466
Response: Expect().
465467
Headers(
466468
Header("Access-Control-Allow-Origin").Equals("*"),
467-
Header("Access-Control-Allow-Methods").Has("GET"),
468-
Header("Access-Control-Allow-Headers").Has("Range"),
469+
Header("Access-Control-Allow-Methods").Has("GET", "HEAD", "OPTIONS"),
470+
Header("Access-Control-Allow-Headers").Has("Content-Type", "Range", "User-Agent", "X-Requested-With"),
469471
Header("Access-Control-Expose-Headers").Has(
470472
"Content-Range",
471473
"Content-Length",
472474
"X-Ipfs-Path",
473475
"X-Ipfs-Roots",
476+
"X-Chunked-Output",
477+
"X-Stream-Output",
474478
),
475479
),
476480
},

0 commit comments

Comments
 (0)