We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62c250d commit 8a2c13aCopy full SHA for 8a2c13a
speech/system-test/betaFeatures.test.js
@@ -38,14 +38,12 @@ const stereoUri = 'gs://cloud-samples-tests/speech/commercial_stereo.wav';
38
describe(`BetaFeatures`, () => {
39
it('should run speech diarization on a local file', async () => {
40
const output = await exec(`${cmd} Diarization -f ${monoFilePath}`);
41
- assert.match(output, /speakerTag: 1/);
42
- assert.match(output, /speakerTag: 2/);
+ assert.match(output, /speakerTag:/);
43
});
44
45
it('should run speech diarization on a GCS file', async () => {
46
const output = await exec(`${cmd} DiarizationGCS -u ${monoUri}`, cwd);
47
48
49
50
51
it('should run multi channel transcription on a local file', async () => {
0 commit comments