Skip to content

Commit

Permalink
fix more args for webkit
Browse files Browse the repository at this point in the history
  • Loading branch information
hkollmann committed Jan 19, 2025
1 parent b0c24af commit 0f3e4ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion compile.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,10 @@ qx.Class.define("qxl.testtapper.compile.LibraryApi", {
}
console.log("TAP version 13");
console.log(`# TESTTAPPER: Running tests in ${browserType}`);
let args = ["--disable-setuid-sandbox"];
let args = [];
if (browserType !== "webkit") {
args.push("--no-sandbox");
args.push("--disable-setuid-sandbox");
}
const launchArgs = {
args: args,
Expand Down

0 comments on commit 0f3e4ae

Please sign in to comment.