blob: 022452675d2b013f8bca62f9950e4eb76b5a0979 [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 public interface of WebInspector Extensions API\n`);
await TestRunner.loadModule('extensions_test_runner');
await ExtensionsTestRunner.runExtensionTests([
function extension_testAPI(nextTest) {
dumpObject(webInspector);
nextTest();
}
]);
})();