Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 deletions

30
lib/aura/Tests/run.js Normal file
View File

@ -0,0 +1,30 @@
const path = require("path");
const utils = require(path.join(__dirname, "utils.js"));
async function run() {
const khaPath = utils.getEnvVarSafe("KHA_PATH");
const electron_bin = utils.getEnvVarSafe("ELECTRON_BIN");
khamake_args = [
path.join(khaPath, "make"),
"debug-html5",
"--debug"
]
electron_args = [
"--no-sandbox",
"--force-device-scale-factor=1",
// "--enable-logging",
// "--trace-warnings",
"--force_low_power_gpu",
"build/debug-html5/electron.js"
]
await utils.spawnCommand("node", khamake_args, true);
await utils.spawnCommand(electron_bin, electron_args, true);
}
(async () => {
await run();
})();