From 8f9cf862fe1a0c79527d7b8816d31deaff6c054e Mon Sep 17 00:00:00 2001 From: Valere Date: Thu, 1 Feb 2024 21:35:11 +0100 Subject: [PATCH 1/2] Force legacy crypto for loading tests --- test/app-tests/loading-test.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/app-tests/loading-test.tsx b/test/app-tests/loading-test.tsx index 00b09ccadd9..ba58f657a41 100644 --- a/test/app-tests/loading-test.tsx +++ b/test/app-tests/loading-test.tsx @@ -129,6 +129,9 @@ describe("loading:", function () { embedded_pages: { home_url: "data:text/html;charset=utf-8;base64,PGh0bWw+PC9odG1sPg==", }, + features: { + "feature_rust_crypto": false, + }, ...(opts.config ?? {}), } as IConfigOptions; From a41cf2140c2c1381e9311dbcedc8bc6a6d5f6d50 Mon Sep 17 00:00:00 2001 From: Valere Date: Fri, 2 Feb 2024 11:42:18 +0100 Subject: [PATCH 2/2] lint fix --- test/app-tests/loading-test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/app-tests/loading-test.tsx b/test/app-tests/loading-test.tsx index ba58f657a41..2eee6a251ce 100644 --- a/test/app-tests/loading-test.tsx +++ b/test/app-tests/loading-test.tsx @@ -130,7 +130,7 @@ describe("loading:", function () { home_url: "data:text/html;charset=utf-8;base64,PGh0bWw+PC9odG1sPg==", }, features: { - "feature_rust_crypto": false, + feature_rust_crypto: false, }, ...(opts.config ?? {}), } as IConfigOptions;