mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 10:01:49 +00:00

PR-URL: https://github.com/nodejs/node/pull/42657 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
42 lines
1.5 KiB
JavaScript
42 lines
1.5 KiB
JavaScript
// Copyright 2017 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.
|
|
|
|
let {session, contextGroup, Protocol} =
|
|
InspectorTest.start('Test for Debugger.stepInto with breakOnAsyncCall.');
|
|
|
|
session.setupScriptMap();
|
|
|
|
InspectorTest.runAsyncTestSuite([
|
|
async function testSetTimeout() {
|
|
Protocol.Debugger.enable();
|
|
Protocol.Debugger.pause();
|
|
Protocol.Debugger.setAsyncCallStackDepth({maxDepth: 128});
|
|
|
|
let pausedPromise = Protocol.Debugger.oncePaused();
|
|
Protocol.Runtime.evaluate({
|
|
expression: 'setTimeout(() => 42, 0)//# sourceURL=test.js'
|
|
});
|
|
await pausedPromise;
|
|
Protocol.Debugger.stepInto({breakOnAsyncCall: true});
|
|
let {params: {callFrames}} = await Protocol.Debugger.oncePaused();
|
|
session.logCallFrames(callFrames);
|
|
await Protocol.Debugger.disable();
|
|
},
|
|
|
|
async function testPromiseThen() {
|
|
Protocol.Debugger.enable();
|
|
Protocol.Debugger.setAsyncCallStackDepth({maxDepth: 128});
|
|
|
|
Protocol.Runtime.evaluate({expression: 'var p = Promise.resolve()'});
|
|
Protocol.Debugger.pause();
|
|
let pausedPromise = Protocol.Debugger.oncePaused();
|
|
Protocol.Runtime.evaluate({expression: 'p.then(() => 42)//# sourceURL=test.js'});
|
|
await pausedPromise;
|
|
Protocol.Debugger.stepInto({breakOnAsyncCall: true});
|
|
let {params: {callFrames}} = await Protocol.Debugger.oncePaused();
|
|
session.logCallFrames(callFrames);
|
|
await Protocol.Debugger.disable();
|
|
}
|
|
]);
|