Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[wasm] Bump chrome for testing - linux: 128.0.6613.119, windows: 128.0.6613.120 #107504

Merged
merged 12 commits into from
Sep 19, 2024
Merged
3 changes: 2 additions & 1 deletion src/mono/wasm/Wasm.Build.Tests/BuildTestBase.cs
Original file line number Diff line number Diff line change
@@ -271,10 +271,11 @@ protected static string RunWithXHarness(string testCommand, string testLogPath,
args.Append($" --output-directory={testLogPath}");
args.Append($" --expected-exit-code={expectedAppExitCode}");
args.Append($" {extraXHarnessArgs ?? string.Empty}");
args.Append(" --browser-arg=--disable-gpu");

// `/.dockerenv` - is to check if this is running in a codespace
if (File.Exists("/.dockerenv"))
args.Append(" --browser-arg=--no-sandbox");
args.Append(" --browser-arg=--no-sandbox");

args.Append(" -- ");
if (extraXHarnessMonoArgs != null)