generated from salesforcecli/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4b0b78d
commit cb90a86
Showing
2 changed files
with
33 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,7 +118,7 @@ describe('force:user:create', () => { | |
'[email protected]', | ||
'--targetdevhubusername', | ||
'[email protected]', | ||
"permissionSets='permCLI, permCLI2'", | ||
"permsets='permCLI, permCLI2'", | ||
'generatepassword=true', | ||
'profileName=profileFromArgs', | ||
]) | ||
|
@@ -132,7 +132,8 @@ describe('force:user:create', () => { | |
lastName: 'User', | ||
localeSidKey: 'en_US', | ||
orgId: 'abc123', | ||
permissionSets: "'permCLI, permCLI2'", | ||
generatepassword: 'true', | ||
permsets: "'permCLI, permCLI2'", | ||
profileId: '12345678', | ||
profileName: 'profileFromArgs', | ||
timeZoneSidKey: 'America/Los_Angeles', | ||
|
@@ -243,6 +244,7 @@ describe('force:user:create', () => { | |
orgId: 'abc123', | ||
permsets: ['test1', 'test2'], | ||
profileId: '00e2D000000bNexWWR', | ||
generatepassword: 'false', | ||
timeZoneSidKey: 'America/Los_Angeles', | ||
username: '[email protected]', | ||
}; | ||
|
@@ -282,6 +284,7 @@ describe('force:user:create', () => { | |
languageLocaleKey: 'en_US', | ||
lastName: 'User', | ||
localeSidKey: 'en_US', | ||
generatepassword: 'false', | ||
profileName: "'Chatter Free User'", | ||
orgId: 'abc123', | ||
// note the new profileId 12345678 -> Chatter Free User from var args | ||
|