We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 497dad7 commit 515bb5dCopy full SHA for 515bb5d
utils/js/runtimeTests.js
@@ -15,7 +15,7 @@
15
* limitations under the License.
16
*/
17
/**
18
- * @file
+ * @fileoverview
19
* Crawl over all test/com/google/.../runtime_tests/*_test.html files and
20
* execute them in a JSDOM context, fail the test if any do not succeed.
21
@@ -81,8 +81,8 @@ describe('Runtime tests', () => {
81
82
try {
83
await TestIsFinished;
84
- } catch(e) {
85
- fail(`Failed test in suite ${TEST_NAME}: \n${e}\n`);
+ } catch (e) {
+ fail(`Failed test in suite ${TEST_NAME}: \n${chalk.red(e)}\n`);
86
}
87
console.log(`Passed all tests in suite ${TEST_NAME}`);
88
});
0 commit comments