mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
Enable mac, dont use 30 second wait when starting up
This commit is contained in:
parent
d066333d96
commit
b03e71b9d4
2 changed files with 2 additions and 2 deletions
2
.github/workflows/nodejs.yml
vendored
2
.github/workflows/nodejs.yml
vendored
|
|
@ -17,8 +17,8 @@ jobs:
|
|||
matrix:
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- macos-latest
|
||||
#TODO re-enable these:
|
||||
#- macos-latest
|
||||
#- windows-latest
|
||||
fail-fast: false
|
||||
steps:
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ test.before(async () => {
|
|||
executablePath: pathToBinary
|
||||
});
|
||||
await app.firstWindow();
|
||||
await new Promise((resolve) => setTimeout(resolve, 30000));
|
||||
await new Promise((resolve) => setTimeout(resolve, 5000));
|
||||
});
|
||||
|
||||
test.after(async () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue