Skip to content

Commit b472009

Browse files
dpebotJustinBeckwith
authored andcommitted
Update the CI config (#185)
1 parent 1e79b40 commit b472009

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/google-cloud-node/.circleci/npm-install-retry.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let spawn = require('child_process').spawn;
66
//USE: ./index.js <ms npm can be idle> <number of attempts> [... NPM ARGS]
77
//
88

9-
let timeout = process.argv[2] || 60000;
9+
let timeout = process.argv[2] || process.env.NPM_INSTALL_TIMEOUT || 60000;
1010
let attempts = process.argv[3] || 3;
1111
let args = process.argv.slice(4);
1212
if (args.length === 0) {

packages/google-cloud-node/smoke-test/speech_smoke_test.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ describe('SpeechSmokeTest', () => {
3838
config: config,
3939
audio: audio,
4040
};
41-
client
42-
.recognize(request)
41+
client.recognize(request)
4342
.then(responses => {
4443
const response = responses[0];
4544
console.log(response);

0 commit comments

Comments
 (0)