File tree Expand file tree Collapse file tree 4 files changed +3267
-3076
lines changed
Expand file tree Collapse file tree 4 files changed +3267
-3076
lines changed Original file line number Diff line number Diff line change 55 "author" : " Salesforce" ,
66 "bugs" : " https://github.com/forcedotcom/cli/issues" ,
77 "dependencies" : {
8- "@salesforce/apex-node" : " ^8.1.27 " ,
8+ "@salesforce/apex-node" : " ^8.3.1 " ,
99 "@salesforce/core" : " ^8.10.1" ,
1010 "@salesforce/kit" : " ^3.2.3" ,
1111 "@salesforce/sf-plugins-core" : " ^12.2.1" ,
6666 "description" : " Tail debug logs."
6767 }
6868 }
69+ },
70+ "logic" : {
71+ "description" : " Use the logic commands to run Apex tests and view Apex test results." ,
72+ "subtopics" : {
73+ "get" : {
74+ "description" : " Get debug logs or test results."
75+ }
76+ }
6977 }
7078 },
7179 "devPlugins" : [
205213 "output" : []
206214 },
207215 "link-check" : {
208- "command" : " node -e \" process.exit(process.env.CI ? 0 : 1)\" || linkinator \" **/*.md\" --skip \" CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|my.salesforce.com|%s\" --markdown --retry --directory-listing --verbosity error" ,
216+ "command" : " node -e \" process.exit(process.env.CI ? 0 : 1)\" || linkinator \" **/*.md\" --skip \" CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|my.salesforce.com|localhost| %s\" --markdown --retry --directory-listing --verbosity error" ,
209217 "files" : [
210218 " ./*.md" ,
211219 " ./!(CHANGELOG).md" ,
Original file line number Diff line number Diff line change @@ -59,7 +59,6 @@ export default class Test extends SfCommand<RunResult> {
5959 public async run ( ) : Promise < RunResult > {
6060 const { flags } = await this . parse ( Test ) ;
6161
62- // Use shared business logic
6362 return TestGetBase . execute ( {
6463 connection : flags [ 'target-org' ] . getConnection ( flags [ 'api-version' ] ) ,
6564 testRunId : flags [ 'test-run-id' ] ,
@@ -69,7 +68,7 @@ export default class Test extends SfCommand<RunResult> {
6968 json : flags . json ,
7069 detailedCoverage : flags [ 'detailed-coverage' ] ,
7170 concise : flags . concise ,
72- jsonEnabled : this . jsonEnabled ( )
71+ jsonEnabled : this . jsonEnabled ( ) ,
7372 } ) ;
7473 }
7574}
Original file line number Diff line number Diff line change @@ -54,13 +54,12 @@ export default class Test extends SfCommand<RunResult> {
5454 'result-format' : resultFormatFlag ,
5555 concise : Flags . boolean ( {
5656 summary : messages . getMessage ( 'flags.concise.summary' ) ,
57- } )
57+ } ) ,
5858 } ;
5959
6060 public async run ( ) : Promise < RunResult > {
6161 const { flags } = await this . parse ( Test ) ;
6262
63- // Use shared business logic
6463 return TestGetBase . execute ( {
6564 connection : flags [ 'target-org' ] . getConnection ( ) ,
6665 testRunId : flags [ 'test-run-id' ] ,
@@ -71,7 +70,7 @@ export default class Test extends SfCommand<RunResult> {
7170 detailedCoverage : false ,
7271 concise : flags . concise ,
7372 jsonEnabled : this . jsonEnabled ( ) ,
74- isUnifiedLogic : true
73+ isUnifiedLogic : true ,
7574 } ) ;
7675 }
7776}
You can’t perform that action at this time.
0 commit comments