Index: test/inspector/protocol-test.js |
diff --git a/test/inspector/protocol-test.js b/test/inspector/protocol-test.js |
index 3884a16ed99a1bdd0183f48ea503fa6772ff50b8..c2643651a25e56c128e66ce16730af77a3224e4e 100644 |
--- a/test/inspector/protocol-test.js |
+++ b/test/inspector/protocol-test.js |
@@ -234,7 +234,11 @@ InspectorTest.runTestSuite = function(testSuite) |
InspectorTest.runAsyncTestSuite = async function(testSuite) { |
for (var test of testSuite) { |
InspectorTest.log("\nRunning test: " + test.name); |
- await test(); |
+ try { |
+ await test(); |
+ } catch (e) { |
+ InspectorTest.log(e.stack); |
+ } |
} |
InspectorTest.completeTest(); |
} |