We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af31201 commit 3967096Copy full SHA for 3967096
1 file changed
test/integration/test.speech_to_text.js
@@ -110,6 +110,7 @@ describe('speech_to_text_integration', function() {
110
.pipe(recognizeStream)
111
.on('error', done)
112
.pipe(concat(function (transcription) {
113
+ assert.equal(typeof transcription, 'string', 'should return a string transcription');
114
assert.equal(transcription.trim(), 'thunderstorms could produce large hail isolated tornadoes and heavy rain');
115
done();
116
}));
0 commit comments