summaryrefslogtreecommitdiffstats
path: root/devtools/server/tests/browser/setup-in-parent.js
blob: 742ff951d6c626cc0f6325b1c872da1049aeb358 (plain)
1
2
3
4
5
6
7
"use strict";

exports.setupParent = function({ mm, prefix }) {
  const args = [ChromeUtils.getClassName(mm) == "ChromeMessageSender", prefix];
  Services.obs.notifyObservers(null, "test:setupParent", JSON.stringify(args));
  return {};
};