Skip to content

Commit

Permalink
Update the CI config (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpebot authored and JustinBeckwith committed Sep 22, 2018
1 parent 00571c3 commit 78c0c05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ let spawn = require('child_process').spawn;
//USE: ./index.js <ms npm can be idle> <number of attempts> [... NPM ARGS]
//

let timeout = process.argv[2] || 60000;
let timeout = process.argv[2] || process.env.NPM_INSTALL_TIMEOUT || 60000;
let attempts = process.argv[3] || 3;
let args = process.argv.slice(4);
if (args.length === 0) {
Expand Down
3 changes: 1 addition & 2 deletions packages/google-cloud-speech/smoke-test/speech_smoke_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ describe('SpeechSmokeTest', () => {
config: config,
audio: audio,
};
client
.recognize(request)
client.recognize(request)
.then(responses => {
const response = responses[0];
console.log(response);
Expand Down

0 comments on commit 78c0c05

Please sign in to comment.