chromium/third_party/blink/web_tests/http/tests/devtools/extensions/extensions-api.js

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import {TestRunner} from 'test_runner';
import {ExtensionsTestRunner} from 'extensions_test_runner';

(async function() {
  TestRunner.addResult(`Tests public interface of WebInspector Extensions API\n`);

  await ExtensionsTestRunner.runExtensionTests([
    function extension_testAPI(nextTest) {
      dumpObject(webInspector);
      nextTest();
    }
  ]);
})();