summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/restart-frame.js
blob: ecb6761577f58d044336770797c08b2dd8274fd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2019 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

const {session, Protocol} =
    InspectorTest.start('Checks that Debugger.restartFrame returns an error');

session.setupScriptMap();

(async function test() {
  Protocol.Debugger.enable();
  const evalPromise = Protocol.Runtime.evaluate({
    expression: 'function foo() { debugger; }; foo();'
  });
  InspectorTest.log('Paused at debugger:');
  const { params: { callFrames: before } } =
      await Protocol.Debugger.oncePaused();
  await session.logSourceLocation(before[0].location);
  const result = await Protocol.Debugger.restartFrame({ callFrameId: before[0].callFrameId });
  InspectorTest.log('restartFrame result:');
  InspectorTest.logMessage(result);
  await Promise.all([Protocol.Debugger.resume(), evalPromise]);
  InspectorTest.completeTest();
})()