diff --git a/src/Uno.Wasm.Bootstrap/ts/Uno/WebAssembly/Bootstrapper.ts b/src/Uno.Wasm.Bootstrap/ts/Uno/WebAssembly/Bootstrapper.ts index ec79bb506..0bd897717 100644 --- a/src/Uno.Wasm.Bootstrap/ts/Uno/WebAssembly/Bootstrapper.ts +++ b/src/Uno.Wasm.Bootstrap/ts/Uno/WebAssembly/Bootstrapper.ts @@ -76,7 +76,8 @@ namespace Uno.WebAssembly.Bootstrap { } ); - (globalThis).IDBFS = IDBFS; + // IDBFS is disabled until https://github.com/dotnet/runtime/issues/65436 is fixed + // (globalThis).IDBFS = IDBFS; } catch (e) { throw `.NET runtime initialization failed (${e})` diff --git a/src/Uno.Wasm.StaticLinking.Aot.UITests/app.js b/src/Uno.Wasm.StaticLinking.Aot.UITests/app.js index c19708321..679620518 100644 --- a/src/Uno.Wasm.StaticLinking.Aot.UITests/app.js +++ b/src/Uno.Wasm.StaticLinking.Aot.UITests/app.js @@ -43,7 +43,7 @@ const path = require("path"); else { console.log(`Results: ${value}`); } - const expected = "InterpreterAndAOT;42;42.30;42.7;e42;True;true;True;1.3;1.4;3.0;0;42;requireJs:true;"; + const expected = "InterpreterAndAOT;42;42.30;42.7;e42;True;false;True;1.3;1.4;3.0;0;42;requireJs:true;"; if (value !== expected) { console.log(`Invalid results got ${value}, expected ${expected}`); process.exit(1); diff --git a/src/Uno.Wasm.StaticLinking.Aot.UITests/app.ts b/src/Uno.Wasm.StaticLinking.Aot.UITests/app.ts index bc6593314..b435daea3 100644 --- a/src/Uno.Wasm.StaticLinking.Aot.UITests/app.ts +++ b/src/Uno.Wasm.StaticLinking.Aot.UITests/app.ts @@ -42,7 +42,7 @@ const path = require("path"); console.log(`Results: ${value}`); } - const expected = "InterpreterAndAOT;42;42.30;42.7;e42;True;true;True;1.3;1.4;3.0;0;42;requireJs:true;"; + const expected = "InterpreterAndAOT;42;42.30;42.7;e42;True;false;True;1.3;1.4;3.0;0;42;requireJs:true;"; if (value !== expected) { console.log(`Invalid results got ${value}, expected ${expected}`);