blob: 9f843675ce1a3e3df447d076dc7aff41be77632a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
"use strict";
const { ExperimentFakes, ExperimentTestUtils } = ChromeUtils.import(
"resource://testing-common/MSTestUtils.jsm"
);
add_task(async function test_recipe_fake_validates() {
const recipe = ExperimentFakes.recipe("foo");
Assert.ok(
await ExperimentTestUtils.validateExperiment(recipe),
"should produce a valid experiment recipe"
);
});
|