summaryrefslogtreecommitdiffstats
path: root/toolkit/components/normandy/test/browser/browser_Uptake.js
blob: b2513b88f6eb6d2d059435a20c3452685467768d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use strict";

ChromeUtils.import("resource://gre/modules/Services.jsm", this);
ChromeUtils.import("resource://normandy/lib/Uptake.jsm", this);

const Telemetry = Services.telemetry;

add_task(async function reportRecipeSubmitsFreshness() {
  Telemetry.clearScalars();
  const recipe = { id: 17, revision_id: "12" };
  await Uptake.reportRecipe(recipe, Uptake.RECIPE_SUCCESS);
  const scalars = Telemetry.getSnapshotForKeyedScalars("main", true);
  Assert.deepEqual(scalars.parent["normandy.recipe_freshness"], { 17: 12 });
});