summaryrefslogtreecommitdiffstats
path: root/browser/components/enterprisepolicies/tests/xpcshell/test_runOnce_helper.js
blob: c8e73b3422934236b3bd4b815d00f31badb9fc74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

let { runOnce } = ChromeUtils.importESModule(
  "resource:///modules/policies/Policies.sys.mjs"
);

let runCount = 0;
function callback() {
  runCount++;
}

add_task(async function test_runonce_helper() {
  runOnce("test_action", callback);
  equal(runCount, 1, "Callback ran for the first time.");

  runOnce("test_action", callback);
  equal(runCount, 1, "Callback didn't run again.");
});