summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/runtime/get-properties-preview.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/inspector/runtime/get-properties-preview.js')
-rw-r--r--deps/v8/test/inspector/runtime/get-properties-preview.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/deps/v8/test/inspector/runtime/get-properties-preview.js b/deps/v8/test/inspector/runtime/get-properties-preview.js
index 62d853a48d..92c6e56426 100644
--- a/deps/v8/test/inspector/runtime/get-properties-preview.js
+++ b/deps/v8/test/inspector/runtime/get-properties-preview.js
@@ -2,7 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-InspectorTest.setupInjectedScriptEnvironment();
+let {session, contextGroup, Protocol} = InspectorTest.start('Tests generated previews in Runtime.getProperties');
+
+contextGroup.setupInjectedScriptEnvironment();
Protocol.Runtime.evaluate({ "expression": "({p1: {a:1}, p2: {b:'foo', bb:'bar'}})" }).then(callbackEvaluate);