summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/test/xpcshell/test_ext_background_generated_reload.js
blob: 4bf59b7989785ce49f76c502b7befdeea441c43d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set sts=2 sw=2 et tw=80: */
"use strict";

add_task(function* test_reload_generated_background_page() {
  let extension = ExtensionTestUtils.loadExtension({
    background() {
      if (location.hash !== "#firstrun") {
        browser.test.sendMessage("first run");
        location.hash = "#firstrun";
        browser.test.assertEq("#firstrun", location.hash);
        location.reload();
      } else {
        browser.test.notifyPass("second run");
      }
    },
  });

  yield extension.startup();
  yield extension.awaitMessage("first run");
  yield extension.awaitFinish("second run");

  yield extension.unload();
});