Skip to content

Commit

Permalink
testing: double the timeout for the installation test (40s->80s).
Browse files Browse the repository at this point in the history
We're getting flakes related to timeout, so bumping this up to
accomodate slower resolution for commands like `npm install`.

Fixes: googleapis#1181
  • Loading branch information
shollyman committed Feb 13, 2023
1 parent 6e82485 commit 8372cf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system-test/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ describe('Installation test', () => {
await mvp(tarball, `${stagingPath}/google-cloud-bigquery.tgz`);
await ncpp('system-test/fixtures/kitchen', `${stagingPath}/`);
await execa('npm', ['install'], {cwd: `${stagingPath}/`, stdio: 'inherit'});
}).timeout(40000);
}).timeout(80000);
});

0 comments on commit 8372cf5

Please sign in to comment.