d6db11fd18
Test just checks that all basic features are working correctly with modules. BUG=v8:1569 R=dgozman@chromium.org,alph@chromium.org,adamk@chromium.org Review-Url: https://codereview.chromium.org/2663743002 Cr-Commit-Position: refs/heads/master@{#42796}
13 lines
514 B
JavaScript
13 lines
514 B
JavaScript
// Copyright 2016 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.
|
|
|
|
Protocol.Debugger.enable();
|
|
|
|
Protocol.Debugger.onceScriptParsed().then(message => message.params.scriptId)
|
|
.then((scriptId) => Protocol.Debugger.getPossibleBreakpoints({ start: { lineNumber: 0, columnNumber: 0, scriptId: scriptId }}))
|
|
.then(InspectorTest.logMessage)
|
|
.then(InspectorTest.completeTest);
|
|
|
|
InspectorTest.addScript("() => []");
|