From 75310ba7e0a36f8cfcb98d62c10a8137457f2498 Mon Sep 17 00:00:00 2001 From: Florian Scholz Date: Fri, 15 May 2026 15:07:51 +0200 Subject: [PATCH] Follow Fetch option renames from BCD --- custom/tests.yaml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/custom/tests.yaml b/custom/tests.yaml index ddc23484f..a22c25050 100644 --- a/custom/tests.yaml +++ b/custom/tests.yaml @@ -4356,17 +4356,18 @@ api: } var instance = new Request('https://example.com'); Request: - __additional: - init_priority_parameter: |- - function construct(options) { - new Request('https://example.com', options); - } - return bcd.testOptionParam(construct, null, 'priority', 'auto'); - init_referrer_parameter: |- - function construct(options) { - new Request('https://example.com', options); - } - return bcd.testOptionParam(construct, null, 'referrer', 'no-referrer'); + options_parameter: + __additional: + priority: |- + function construct(options) { + new Request('https://example.com', options); + } + return bcd.testOptionParam(construct, null, 'priority', 'auto'); + referrer: |- + function construct(options) { + new Request('https://example.com', options); + } + return bcd.testOptionParam(construct, null, 'referrer', 'no-referrer'); cache: __additional: only-if-cached: |-