Skip to content

Commit

Permalink
Vision snippets. (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry authored and Ace Nassri committed Nov 10, 2022
1 parent 1dbde86 commit bad23d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function getPointValue (timeSeries) {
}

test.before(stubConsole);
test.after(restoreConsole);
test.after.always(restoreConsole);

test.cb('should create and read back a custom metric', (t) => {
customMetricsExample.main(
Expand Down
2 changes: 1 addition & 1 deletion monitoring/snippets/system-test/list_resources.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ require(`../../system-test/_setup`);
const listResourcesExample = require(`../list_resources`);

test.before(stubConsole);
test.after(restoreConsole);
test.after.always(restoreConsole);

test.cb(`should list a bunch of stuff`, (t) => {
listResourcesExample.main(process.env.GCLOUD_PROJECT, (err, results) => {
Expand Down

0 comments on commit bad23d1

Please sign in to comment.