Skip to content

Commit

Permalink
docs: relax the tests for face / person detection (#381)
Browse files Browse the repository at this point in the history
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/nodejs-video-intelligence/issues/new/choose) before writing your code!  That way we can discuss the change, evaluate designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)

Fixes #<issue_number_goes_here> 🦕
  • Loading branch information
nnegrey authored and ahrarmonsur committed Nov 17, 2022
1 parent 2489285 commit b2cd320
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ const file = 'resources/googlework_short.mp4';
describe('analyzing faces in video', () => {
it('should identify faces in a local file', async () => {
const output = execSync(`${cmd} ${file}`);
assert.match(output, /glasses/);
assert.match(output, /Attribute/);
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ const gcsUri = 'gs://cloud-samples-data/video/googlework_short.mp4';
describe('analyzing faces in video', () => {
it('should identify faces in a file in Google Storage', async () => {
const output = execSync(`${cmd} ${gcsUri}`);
assert.match(output, /glasses/);
assert.match(output, /Attribute/);
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ const file = 'resources/googlework_short.mp4';
describe('analyzing people in video', () => {
it('should identify people in a local file', async () => {
const output = execSync(`${cmd} ${file}`);
assert.match(output, /Hair/);
assert.match(output, /Landmark/);
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ const gcsUri = 'gs://cloud-samples-data/video/googlework_short.mp4';
describe('analyzing people in video', () => {
it('should identify people in a file in Google Storage', async () => {
const output = execSync(`${cmd} ${gcsUri}`);
assert.match(output, /Hair/);
assert.match(output, /Landmark/);
});
});

0 comments on commit b2cd320

Please sign in to comment.