Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' into autosynth
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith authored Aug 27, 2018
2 parents 22751e9 + d308480 commit faa2b57
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions samples/system-test/betaFeatures.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,8 @@ test(`should run word Level Confience on a local file`, async t => {
const output = await runAsync(
`${cmd} wordLevelConfidence -f ${BrooklynFilePath}`
);
t.true(
output.includes(`Transcription: how old is the Brooklyn Bridge`) &&
output.includes(`Confidence: \d\.\d`)
);
t.true(output.includes(`Transcription: how old is the Brooklyn Bridge`));
t.true(/Confidence: \d\.\d/.test(output));
});

test(`should run word level confidence on a GCS bucket`, async t => {
Expand Down

0 comments on commit faa2b57

Please sign in to comment.