console-message-before-enable.js 957 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
// Copyright 2022 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, contextGroup, Protocol} = InspectorTest.start(
    'Checks that console messages before Runtime.enable include a single stack frame');

contextGroup.addScript(`
function foo() {
  console.log("Hello from foo!");
}

function bar() {
  console.trace("Hello from bar!");
  foo();
}

console.error('Error on toplevel');
foo();
bar();
//# sourceURL=test.js`);

Protocol.Runtime.onConsoleAPICalled(
    ({params}) => InspectorTest.logMessage(params));

InspectorTest.runAsyncTestSuite([
  async function testEnable() {
    await Protocol.Runtime.enable();
    await Protocol.Runtime.disable();
  },

  async function testEnableAfterDiscard() {
    await Protocol.Runtime.discardConsoleEntries();
    await Protocol.Runtime.enable();
    await Protocol.Runtime.disable();
  }
]);