c2c3673e8a
* build: use runuser for electron spec runner * chown * run tests in priv * fixed * build: setup testing on arm for GHA * no build-tools for test * start xvfb for the right user * no more gn-build-type * debug env * ue xvfb-run * use 8 core for node tests * build: do test sharding on linux * fix: disable hung node test * build: index splits are hard * build: use --init to reap children * allow write junit * use custom xvfb wrapper * pipefail * dont kill xvfb, its already dead --------- Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
7 lines
109 B
Bash
Executable file
7 lines
109 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
export DISPLAY=:99
|
|
Xvfb :99 -screen 0 1024x768x16 -ac &
|
|
XVFB_PID=$!
|
|
node "$@"
|