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