• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// 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}
14