Skip to content

Commit 9372dfb

Browse files
author
Benjamin E. Coe
authored
fix: in rare cases test can take longer than 180,000 timeout (#307)
1 parent c7f85e8 commit 9372dfb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

asset/snippets/exportAssets.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ async function main(dumpFilePath) {
4949
// Do things with with the response.
5050
console.log(result);
5151
}
52-
exportAssets();
52+
exportAssets().catch((err) => {
53+
throw err;
54+
});
5355
// [END asset_quickstart_export_assets]
5456
}
5557

0 commit comments

Comments
 (0)