Skip to content

Commit

Permalink
fix: in rare cases test can take longer than 180,000 timeout (#307)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe authored Apr 6, 2020
1 parent b072d53 commit 3fb967d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion asset/snippets/exportAssets.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ async function main(dumpFilePath) {
// Do things with with the response.
console.log(result);
}
exportAssets();
exportAssets().catch((err) => {
throw err;
});
// [END asset_quickstart_export_assets]
}

Expand Down

0 comments on commit 3fb967d

Please sign in to comment.