summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/caught-uncaught-exceptions.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/inspector/debugger/caught-uncaught-exceptions.js')
-rw-r--r--deps/v8/test/inspector/debugger/caught-uncaught-exceptions.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/test/inspector/debugger/caught-uncaught-exceptions.js b/deps/v8/test/inspector/debugger/caught-uncaught-exceptions.js
index d049cf0da0..38b622d3db 100644
--- a/deps/v8/test/inspector/debugger/caught-uncaught-exceptions.js
+++ b/deps/v8/test/inspector/debugger/caught-uncaught-exceptions.js
@@ -2,9 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-InspectorTest.log("Check that inspector correctly passes caught/uncaught information.");
+let {session, contextGroup, Protocol} = InspectorTest.start("Check that inspector correctly passes caught/uncaught information.");
-InspectorTest.addScript(
+contextGroup.addScript(
`function throwCaught() { try { throw new Error(); } catch (_) {} }
function throwUncaught() { throw new Error(); }
function schedule(f) { setTimeout(f, 0); }