Bug 1867190 - Add prefs for PHC probablities r=glandium
[gecko.git] / toolkit / profile / xpcshell / test_snap_empty.js
blob80b1de9569b8cf4cacd5e6d3505cd6a02eebab45
1 /* Any copyright is dedicated to the Public Domain.
2    http://creativecommons.org/publicdomain/zero/1.0/ */
4 /*
5  * Tests that from a clean slate snap builds create an appropriate profile.
6  */
8 add_task(async () => {
9   let service = getProfileService();
10   let { profile, didCreate } = selectStartupProfile();
11   checkStartupReason("firstrun-created-default");
13   Assert.ok(didCreate, "Should have created a new profile.");
14   Assert.equal(
15     profile.name,
16     PROFILE_DEFAULT,
17     "Should have used the normal name."
18   );
19   if (AppConstants.MOZ_DEV_EDITION) {
20     Assert.equal(service.profileCount, 2, "Should be two profiles.");
21   } else {
22     Assert.equal(service.profileCount, 1, "Should be only one profile.");
23   }
25   checkProfileService();
26 });