File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
tests-unit/files/FWO.Test Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -264,7 +264,8 @@ public static string ToUtcString(string? timestring)
264264 using IBrowser ? browser = await Puppeteer . LaunchAsync ( new LaunchOptions
265265 {
266266 ExecutablePath = installedBrowser . GetExecutablePath ( ) ,
267- Headless = true
267+ Headless = true ,
268+ Args = new [ ] { "--no-zygote" }
268269 } ) ;
269270
270271 try
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ public async Task GeneratePdf()
7676 Headless = true ,
7777 DumpIO = isGitHubActions != null ? true : false , // Enables debug logs
7878 Args = isGitHubActions != null ?
79- new [ ] { "--database=/tmp" , "--no-sandbox" , "--read-only " }
79+ new [ ] { "--database=/tmp" , "--no-sandbox" , "--no-zygote " }
8080 : [ ] // No additional arguments locally
8181 } ) ;
8282
You can’t perform that action at this time.
0 commit comments