blob: 7a07ecfeafbdf1d12dda86f5dbb86c366991ed82 [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.memory returns fresh instance/samples.\n`);
await TestRunner.loadModule('console_test_runner');
await TestRunner.showPanel('console');
ConsoleTestRunner.evaluateInConsole('console.memory === console.memory', step1);
async function step1() {
await ConsoleTestRunner.dumpConsoleMessages();
TestRunner.completeTest();
}
})();