mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 14:20:14 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D23814 --HG-- extra : moz-landing-system : lando
14 lines
524 B
JavaScript
14 lines
524 B
JavaScript
"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});
|
|
});
|