Enable mac, dont use 30 second wait when starting up

This commit is contained in:
Philip Peterson 2024-11-22 23:53:33 -09:00
parent d066333d96
commit b03e71b9d4
No known key found for this signature in database
GPG key ID: 354311183FC6519B
2 changed files with 2 additions and 2 deletions

View file

@ -17,8 +17,8 @@ jobs:
matrix: matrix:
os: os:
- ubuntu-latest - ubuntu-latest
- macos-latest
#TODO re-enable these: #TODO re-enable these:
#- macos-latest
#- windows-latest #- windows-latest
fail-fast: false fail-fast: false
steps: steps:

View file

@ -33,7 +33,7 @@ test.before(async () => {
executablePath: pathToBinary executablePath: pathToBinary
}); });
await app.firstWindow(); await app.firstWindow();
await new Promise((resolve) => setTimeout(resolve, 30000)); await new Promise((resolve) => setTimeout(resolve, 5000));
}); });
test.after(async () => { test.after(async () => {