blob: 1fa3db3da1d1b1cd13bc8b9a4074fe579eabb0bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
"use strict";
const { Uptake } = ChromeUtils.importESModule(
"resource://normandy/lib/Uptake.sys.mjs"
);
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 });
});
|