summaryrefslogtreecommitdiffstats
path: root/toolkit/components/telemetry/tests/unit/test_TelemetryFlagClear.js
blob: 29ea4c0a1e31487c1a93f7e0b1feae6184b39211 (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
25
26
27
28
29
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

function run_test() {
  let testFlag = Services.telemetry.getHistogramById("TELEMETRY_TEST_FLAG");
  deepEqual(
    testFlag.snapshot().values,
    { 0: 1, 1: 0 },
    "Original value is correct"
  );
  testFlag.add(1);
  deepEqual(
    testFlag.snapshot().values,
    { 0: 0, 1: 1, 2: 0 },
    "Value is correct after ping"
  );
  testFlag.clear();
  deepEqual(
    testFlag.snapshot().values,
    { 0: 1, 1: 0 },
    "Value is correct after calling clear()"
  );
  testFlag.add(1);
  deepEqual(
    testFlag.snapshot().values,
    { 0: 0, 1: 1, 2: 0 },
    "Value is correct after ping"
  );
}