We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da9508a commit 787cd5bCopy full SHA for 787cd5b
tests/ExtensionLibsTests/ImageExportTests/ImageExport.fs
@@ -16,6 +16,10 @@ let readTestFilePlatformSpecific filePostfix =
16
File.ReadAllText (__SOURCE_DIRECTORY__ + $"/data/win{filePostfix}")
17
else
18
raise (Exception "Running tests on the current OS is not supported :(")
19
+
20
+// https://github.com/hardkoded/puppeteer-sharp/issues/2792 maybe
21
+// generation fails on linux CI, workaround like this?
22
+PuppeteerSharpRendererOptions.launchOptions.Args <- Array.concat [PuppeteerSharpRendererOptions.launchOptions.Args; [| "--no-sandbox" |]]
23
24
[<Tests>]
25
let ``Image export base64 strings tests`` =
0 commit comments