Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all dependencies #11624

Merged
merged 4 commits into from
Dec 2, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test: increase timeout for macOS GitHub runner
  • Loading branch information
jd1048576 committed Dec 2, 2021
commit 2f1458241e2379f7150ff03721bde64f08e25ce6
3 changes: 2 additions & 1 deletion test/integration/create-react-app/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ const { rmSync } = require('fs');

const cli = require.resolve('create-react-app/index.js');

jest.setTimeout(1000 * 60 * 5);
// Increase the timeout for GitHub macOS runner
jest.setTimeout(1000 * 60 * (process.env.RUNNER_OS === 'macOS' ? 10 : 5));

const projectName = 'test-app';
const genPath = join(__dirname, projectName);
Expand Down