blob: bb897ca8fde1f4451d5c51df1449ac65332e4fe5 [file] [log] [blame]
Nathaniel Nifong4cf2ab62020-03-06 20:39:19 -05001// When running the jasmine tests in google3, this can be a nop because catching
2// logs is handled already by the testing framework.
3// original here http://shortn/_HeVXSB2tRh
4function catchException(done, fn) {
5 return fn;
6}
7
8// This function would normally upload results to gold, but we don't do that
9// when running the test in google3. If necessary, the test could have scuba
10// turned on to serve that purpose.
11function reportSurface(foo, bar, done) {
12 done();
13}