1 /* Any copyright is dedicated to the Public Domain.
2 http://creativecommons.org/publicdomain/zero/1.0/ */
5 * Tests that from a clean slate snap builds create an appropriate profile.
9 let service = getProfileService();
10 let { profile, didCreate } = selectStartupProfile();
11 checkStartupReason("firstrun-created-default");
13 Assert.ok(didCreate, "Should have created a new profile.");
17 "Should have used the normal name."
19 if (AppConstants.MOZ_DEV_EDITION) {
20 Assert.equal(service.profileCount, 2, "Should be two profiles.");
22 Assert.equal(service.profileCount, 1, "Should be only one profile.");
25 checkProfileService();