Skip to content

Commit

Permalink
Enable mac, dont use 30 second wait when starting up
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-peterson committed Nov 23, 2024
1 parent e4b29cc commit d6fd332
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
matrix:
os:
- ubuntu-latest
- macos-latest
#TODO re-enable these:
#- macos-latest
#- windows-latest
fail-fast: false
steps:
Expand Down
2 changes: 1 addition & 1 deletion test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down

0 comments on commit d6fd332

Please sign in to comment.