gecko-dev/toolkit/components/normandy/test/browser/browser_Uptake.js
Victor Porof 4a06c925ac Bug 1561435 - Format toolkit/components/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D36052

--HG--
extra : source : b5be5b4f4b47c256e28a29f665dc754f6407ee7f
2019-07-05 11:14:05 +02:00

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 });
});