summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/new-console-output/test/fixtures/serviceContainer.js
blob: 04b15c88bcd044d13245323deb8d7e3a3af87dfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

module.exports = {
  attachRefToHud: () => {},
  emitNewMessage: () => {},
  hudProxyClient: {},
  onViewSourceInDebugger: () => {},
  openNetworkPanel: () => {},
  sourceMapService: {
    subscribe: () => {},
  },
  openLink: () => {},
  createElement: tagName => document.createElement(tagName)
};