mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 14:20:14 +02:00
# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D36052 --HG-- extra : source : b5be5b4f4b47c256e28a29f665dc754f6407ee7f
14 lines
528 B
JavaScript
14 lines
528 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 });
|
|
});
|