nodejs/deps/v8/test/inspector/regress/regress-crbug-1253277.js
Michaël Zasso 3e9939e38c
deps: update V8 to 9.6.180.14
PR-URL: https://github.com/nodejs/node/pull/40488
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2021-11-21 16:04:41 +01:00

24 lines
879 B
JavaScript

// Copyright 2020 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 {contextGroup, Protocol, session} = InspectorTest.start('Regression test for crbug.com/1253277');
const url = 'foo.js';
contextGroup.addScript('function foo(){}foo()', 0, 0, url);
session.setupScriptMap();
InspectorTest.runAsyncTestSuite([
async function test() {
await Promise.all([Protocol.Runtime.enable(), Protocol.Debugger.enable()]);
const {result: {breakpointId, locations}} = await Protocol.Debugger.setBreakpointByUrl({
columnNumber: 16,
lineNumber: 0,
url,
});
await session.logBreakLocations(locations);
await Protocol.Debugger.removeBreakpoint({breakpointId});
await Promise.all([Protocol.Runtime.disable(), Protocol.Debugger.disable()]);
}
]);