summaryrefslogtreecommitdiffstats
path: root/docshell/test/unit_ipc/test_pb_notification_ipc.js
blob: 413037b36a9198566f1fc821904c259062f10f45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function run_test() {
  var notifications = 0;
  var obs = {
    observe(aSubject, aTopic) {
      Assert.equal(aTopic, "last-pb-context-exited");
      notifications++;
    },
  };
  Services.obs.addObserver(obs, "last-pb-context-exited");

  run_test_in_child("../unit/test_pb_notification.js", function () {
    Assert.equal(notifications, 1);
    do_test_finished();
  });
}