blob: 6e8200d40704cb3932ab4dc493364ae39366e57e [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
(async function() {
TestRunner.addResult(`Tests that console nicely formats performance getters.\n`);
await TestRunner.loadModule('console_test_runner');
await TestRunner.showPanel('console');
await TestRunner.evaluateInPagePromise(`
function logToConsole()
{
console.log(performance.timing);
console.log(performance.memory);
}
logToConsole();
`);
TestRunner.evaluateInPage('logToConsole()', callback);
async function callback() {
var messages = await ConsoleTestRunner.dumpConsoleMessagesIntoArray();
messages.map(m => TestRunner.addResult(m.replace(/:\s+\d+/g, ': <number>')));
TestRunner.completeTest();
}
})();