maybe xvfb?
This commit is contained in:
parent
f944cd2081
commit
66e985df7b
2 changed files with 2 additions and 1 deletions
|
@ -33,6 +33,7 @@ jobs:
|
||||||
sudo dpkg --add-architecture i386
|
sudo dpkg --add-architecture i386
|
||||||
sudo apt-get update -y
|
sudo apt-get update -y
|
||||||
sudo apt-get install -y wine32
|
sudo apt-get install -y wine32
|
||||||
|
sudo apt-get install -y xvfb
|
||||||
- store_test_results:
|
- store_test_results:
|
||||||
path: test-results
|
path: test-results
|
||||||
- run:
|
- run:
|
||||||
|
|
|
@ -17,7 +17,7 @@ test("Launch electron app", async () => {
|
||||||
|
|
||||||
console.log(fs.readdirSync(paths.main))
|
console.log(fs.readdirSync(paths.main))
|
||||||
|
|
||||||
const electronApp = await electron.launch({ args: ['build/index.js', '--enable-logging','--no-sandbox'], cwd: paths.root });
|
const electronApp = await electron.launch({ args: ['--enable-logging','--no-sandbox','build/index.js'], cwd: paths.root });
|
||||||
|
|
||||||
const appPath = await electronApp.evaluate(async ({ app }) => {
|
const appPath = await electronApp.evaluate(async ({ app }) => {
|
||||||
// This runs in the main Electron process, parameter here is always
|
// This runs in the main Electron process, parameter here is always
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue