@salesforce/plugin-apex 3.6.12 → 3.6.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/oclif.manifest.json +383 -383
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -148,7 +148,7 @@ FLAG DESCRIPTIONS
|
|
|
148
148
|
directory.
|
|
149
149
|
```
|
|
150
150
|
|
|
151
|
-
_See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.6.
|
|
151
|
+
_See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.6.13/src/commands/apex/get/log.ts)_
|
|
152
152
|
|
|
153
153
|
## `sf apex get test`
|
|
154
154
|
|
|
@@ -208,7 +208,7 @@ EXAMPLES
|
|
|
208
208
|
me@myorg'
|
|
209
209
|
```
|
|
210
210
|
|
|
211
|
-
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.6.
|
|
211
|
+
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.6.13/src/commands/apex/get/test.ts)_
|
|
212
212
|
|
|
213
213
|
## `sf apex list log`
|
|
214
214
|
|
|
@@ -248,7 +248,7 @@ EXAMPLES
|
|
|
248
248
|
$ sf apex list log --target-org me@my.org
|
|
249
249
|
```
|
|
250
250
|
|
|
251
|
-
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.6.
|
|
251
|
+
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.6.13/src/commands/apex/list/log.ts)_
|
|
252
252
|
|
|
253
253
|
## `sf apex run`
|
|
254
254
|
|
|
@@ -295,7 +295,7 @@ EXAMPLES
|
|
|
295
295
|
$ sf apex run
|
|
296
296
|
```
|
|
297
297
|
|
|
298
|
-
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.6.
|
|
298
|
+
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.6.13/src/commands/apex/run.ts)_
|
|
299
299
|
|
|
300
300
|
## `sf apex run test`
|
|
301
301
|
|
|
@@ -438,7 +438,7 @@ FLAG DESCRIPTIONS
|
|
|
438
438
|
--tests Test1 --tests Test2
|
|
439
439
|
```
|
|
440
440
|
|
|
441
|
-
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.6.
|
|
441
|
+
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.6.13/src/commands/apex/run/test.ts)_
|
|
442
442
|
|
|
443
443
|
## `sf apex tail log`
|
|
444
444
|
|
|
@@ -481,6 +481,6 @@ EXAMPLES
|
|
|
481
481
|
$ sf apex tail log --color --skip-trace-flag
|
|
482
482
|
```
|
|
483
483
|
|
|
484
|
-
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.6.
|
|
484
|
+
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.6.13/src/commands/apex/tail/log.ts)_
|
|
485
485
|
|
|
486
486
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
|
@@ -106,18 +106,25 @@
|
|
|
106
106
|
"run:apex"
|
|
107
107
|
]
|
|
108
108
|
},
|
|
109
|
-
"apex:
|
|
109
|
+
"apex:run:test": {
|
|
110
110
|
"aliases": [
|
|
111
|
-
"force:apex:
|
|
111
|
+
"force:apex:test:run"
|
|
112
112
|
],
|
|
113
113
|
"args": {},
|
|
114
114
|
"deprecateAliases": true,
|
|
115
|
-
"description": "
|
|
115
|
+
"description": "Specify which tests to run by using the --class-names, --suite-names, or --tests flags. Alternatively, use the --test-level flag to run all the tests in your org, local tests, or specified tests.\n\nTo see code coverage results, use the --code-coverage flag with --result-format. The output displays a high-level summary of the test run and the code coverage values for classes in your org. If you specify human-readable result format, use the --detailed-coverage flag to see detailed coverage results for each test method run.\n\nBy default, Apex tests run asynchronously and immediately return a test run ID. You can use the --wait flag to specify the number of minutes to wait; if the tests finish in that timeframe, the command displays the results. If the tests haven't finished by the end of the wait time, the command displays a test run ID. Use the \"<%= config.bin %> apex get test --test-run-id\" command to get the results.\n\nYou must have the \"View All Data\" system permission to use this command. The permission is disabled by default and can be enabled only by a system administrator.\n\nNOTE: The testRunCoverage value (JSON and JUnit result formats) is a percentage of the covered lines and total lines from all the Apex classes evaluated by the tests in this run.",
|
|
116
116
|
"examples": [
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"
|
|
117
|
+
"Run all Apex tests and suites in your default org:\n<%= config.bin %> <%= command.id %>",
|
|
118
|
+
"Run the specified Apex test classes in your default org and display results in human-readable form:\n<%= config.bin %> <%= command.id %> --class-names MyClassTest --class-names MyOtherClassTest --result-format human",
|
|
119
|
+
"Run the specified Apex test suites in your default org and include code coverage results and additional details:\n<%= config.bin %> <%= command.id %> --suite-names MySuite --suite-names MyOtherSuite --code-coverage --detailed-coverage",
|
|
120
|
+
"Run the specified Apex tests in your default org and display results in human-readable output:\n<%= config.bin %> <%= command.id %> --tests MyClassTest.testCoolFeature --tests MyClassTest.testAwesomeFeature --tests AnotherClassTest --tests namespace.TheirClassTest.testThis --result-format human",
|
|
121
|
+
"Run all tests in the org with the specified username with the specified test level; save the output to the specified directory:\n<%= config.bin %> <%= command.id %> --test-level RunLocalTests --output-dir <path to outputdir> --target-org me@my.org",
|
|
122
|
+
"Run all tests in the org asynchronously:\n<%= config.bin %> <%= command.id %> --target-org myscratch",
|
|
123
|
+
"Run all tests synchronously; the command waits to display the test results until all tests finish:\n<%= config.bin %> <%= command.id %> --synchronous",
|
|
124
|
+
"Run specific tests using the --test-level flag:\n<%= config.bin %> <%= command.id %> --test-level RunLocalTests",
|
|
125
|
+
"Run Apex tests on all the methods in the specified class; output results in Test Anything Protocol (TAP) format and request code coverage results:\n<%= config.bin %> <%= command.id %> --class-names TestA --class-names TestB --result-format tap --code-coverage",
|
|
126
|
+
"Run Apex tests on methods specified using the standard Class.method notation; if you specify a test class without a method, the command runs all methods in the class:\n<%= config.bin %> <%= command.id %> --tests TestA.excitingMethod --tests TestA.boringMethod --tests TestB",
|
|
127
|
+
"Run Apex tests on methods specified using the standard Class.method notation with a namespace:\n<%= config.bin %> <%= command.id %> --tests ns.TestA.excitingMethod --tests ns.TestA.boringMethod --tests ns.TestB"
|
|
121
128
|
],
|
|
122
129
|
"flags": {
|
|
123
130
|
"json": {
|
|
@@ -171,105 +178,215 @@
|
|
|
171
178
|
"multiple": false,
|
|
172
179
|
"type": "option"
|
|
173
180
|
},
|
|
174
|
-
"
|
|
181
|
+
"code-coverage": {
|
|
175
182
|
"aliases": [
|
|
176
|
-
"
|
|
183
|
+
"codecoverage"
|
|
177
184
|
],
|
|
178
|
-
"char": "
|
|
185
|
+
"char": "c",
|
|
179
186
|
"deprecateAliases": true,
|
|
180
|
-
"name": "
|
|
181
|
-
"summary": "
|
|
187
|
+
"name": "code-coverage",
|
|
188
|
+
"summary": "Retrieve code coverage results.",
|
|
189
|
+
"allowNo": false,
|
|
190
|
+
"type": "boolean"
|
|
191
|
+
},
|
|
192
|
+
"output-dir": {
|
|
193
|
+
"aliases": [
|
|
194
|
+
"outputdir",
|
|
195
|
+
"output-directory"
|
|
196
|
+
],
|
|
197
|
+
"char": "d",
|
|
198
|
+
"deprecateAliases": true,
|
|
199
|
+
"name": "output-dir",
|
|
200
|
+
"summary": "Directory in which to store test run files.",
|
|
182
201
|
"hasDynamicHelp": false,
|
|
183
202
|
"multiple": false,
|
|
184
203
|
"type": "option"
|
|
185
204
|
},
|
|
186
|
-
"
|
|
205
|
+
"test-level": {
|
|
206
|
+
"aliases": [
|
|
207
|
+
"testlevel"
|
|
208
|
+
],
|
|
209
|
+
"char": "l",
|
|
210
|
+
"deprecateAliases": true,
|
|
211
|
+
"description": "Here's what the levels mean:\n\n- RunSpecifiedTests — Only the tests that you specify in the runTests option are run. Code coverage requirements differ from the default coverage requirements when using this test level. The executed tests must cover each class and trigger in the deployment package for a minimum of 75% code coverage. This coverage is computed for each class and triggers individually, and is different than the overall coverage percentage.\n- RunLocalTests — All local tests in your org, including tests that originate from no-namespaced unlocked packages, are run. The tests that originate from installed managed packages and namespaced unlocked packages aren't run. This test level is the default for production deployments that include Apex classes or triggers.\n- RunAllTestsInOrg — All tests are run. The tests include all tests in your org.",
|
|
212
|
+
"name": "test-level",
|
|
213
|
+
"summary": "Level of tests to run; default is RunLocalTests.",
|
|
214
|
+
"hasDynamicHelp": false,
|
|
215
|
+
"multiple": false,
|
|
216
|
+
"options": [
|
|
217
|
+
"RunLocalTests",
|
|
218
|
+
"RunAllTestsInOrg",
|
|
219
|
+
"RunSpecifiedTests"
|
|
220
|
+
],
|
|
221
|
+
"type": "option"
|
|
222
|
+
},
|
|
223
|
+
"class-names": {
|
|
224
|
+
"aliases": [
|
|
225
|
+
"classnames"
|
|
226
|
+
],
|
|
187
227
|
"char": "n",
|
|
188
|
-
"
|
|
189
|
-
"
|
|
228
|
+
"deprecateAliases": true,
|
|
229
|
+
"description": "If you select --class-names, you can't specify --suite-names or --tests.\nFor multiple classes, repeat the flag for each.\n--class-names Class1 --class-names Class2",
|
|
230
|
+
"exclusive": [
|
|
231
|
+
"suite-names",
|
|
232
|
+
"tests"
|
|
233
|
+
],
|
|
234
|
+
"name": "class-names",
|
|
235
|
+
"summary": "Apex test class names to run; default is all classes.",
|
|
236
|
+
"delimiter": ",",
|
|
237
|
+
"hasDynamicHelp": false,
|
|
238
|
+
"multiple": true,
|
|
239
|
+
"type": "option"
|
|
240
|
+
},
|
|
241
|
+
"result-format": {
|
|
242
|
+
"aliases": [
|
|
243
|
+
"resultformat"
|
|
244
|
+
],
|
|
245
|
+
"char": "r",
|
|
246
|
+
"deprecateAliases": true,
|
|
247
|
+
"name": "result-format",
|
|
248
|
+
"summary": "Format of the test results.",
|
|
249
|
+
"default": "human",
|
|
190
250
|
"hasDynamicHelp": false,
|
|
191
251
|
"multiple": false,
|
|
252
|
+
"options": [
|
|
253
|
+
"human",
|
|
254
|
+
"tap",
|
|
255
|
+
"junit",
|
|
256
|
+
"json"
|
|
257
|
+
],
|
|
192
258
|
"type": "option"
|
|
193
259
|
},
|
|
194
|
-
"
|
|
260
|
+
"suite-names": {
|
|
195
261
|
"aliases": [
|
|
196
|
-
"
|
|
197
|
-
"output-directory"
|
|
262
|
+
"suitenames"
|
|
198
263
|
],
|
|
199
|
-
"char": "
|
|
264
|
+
"char": "s",
|
|
200
265
|
"deprecateAliases": true,
|
|
201
|
-
"description": "
|
|
202
|
-
"
|
|
203
|
-
|
|
266
|
+
"description": "If you select --suite-names, you can't specify --class-names or --tests.\nFor multiple suites, repeat the flag for each.\n--suite-names Suite1 --suite-names Suite2",
|
|
267
|
+
"exclusive": [
|
|
268
|
+
"class-names",
|
|
269
|
+
"tests"
|
|
270
|
+
],
|
|
271
|
+
"name": "suite-names",
|
|
272
|
+
"summary": "Apex test suite names to run.",
|
|
273
|
+
"delimiter": ",",
|
|
274
|
+
"hasDynamicHelp": false,
|
|
275
|
+
"multiple": true,
|
|
276
|
+
"type": "option"
|
|
277
|
+
},
|
|
278
|
+
"tests": {
|
|
279
|
+
"char": "t",
|
|
280
|
+
"description": "If you specify --tests, you can't specify --class-names or --suite-names\nFor multiple tests, repeat the flag for each.\n--tests Test1 --tests Test2",
|
|
281
|
+
"exclusive": [
|
|
282
|
+
"class-names",
|
|
283
|
+
"suite-names"
|
|
284
|
+
],
|
|
285
|
+
"name": "tests",
|
|
286
|
+
"summary": "Apex test class names or IDs and, if applicable, test methods to run; default is all tests.",
|
|
287
|
+
"delimiter": ",",
|
|
204
288
|
"hasDynamicHelp": false,
|
|
289
|
+
"multiple": true,
|
|
290
|
+
"type": "option"
|
|
291
|
+
},
|
|
292
|
+
"wait": {
|
|
293
|
+
"char": "w",
|
|
294
|
+
"name": "wait",
|
|
295
|
+
"summary": "Sets the streaming client socket timeout in minutes; specify a longer wait time if timeouts occur frequently.",
|
|
296
|
+
"hasDynamicHelp": true,
|
|
205
297
|
"multiple": false,
|
|
206
298
|
"type": "option"
|
|
299
|
+
},
|
|
300
|
+
"synchronous": {
|
|
301
|
+
"char": "y",
|
|
302
|
+
"name": "synchronous",
|
|
303
|
+
"summary": "Runs test methods from a single Apex class synchronously; if not specified, tests are run asynchronously.",
|
|
304
|
+
"allowNo": false,
|
|
305
|
+
"type": "boolean"
|
|
306
|
+
},
|
|
307
|
+
"detailed-coverage": {
|
|
308
|
+
"aliases": [
|
|
309
|
+
"detailedcoverage"
|
|
310
|
+
],
|
|
311
|
+
"char": "v",
|
|
312
|
+
"dependsOn": [
|
|
313
|
+
"code-coverage"
|
|
314
|
+
],
|
|
315
|
+
"deprecateAliases": true,
|
|
316
|
+
"name": "detailed-coverage",
|
|
317
|
+
"summary": "Display detailed code coverage per test.",
|
|
318
|
+
"allowNo": false,
|
|
319
|
+
"type": "boolean"
|
|
320
|
+
},
|
|
321
|
+
"concise": {
|
|
322
|
+
"name": "concise",
|
|
323
|
+
"summary": "Display only failed test results; works with human-readable output only.",
|
|
324
|
+
"allowNo": false,
|
|
325
|
+
"type": "boolean"
|
|
207
326
|
}
|
|
208
327
|
},
|
|
209
328
|
"hasDynamicHelp": true,
|
|
210
329
|
"hiddenAliases": [],
|
|
211
|
-
"id": "apex:
|
|
330
|
+
"id": "apex:run:test",
|
|
212
331
|
"pluginAlias": "@salesforce/plugin-apex",
|
|
213
332
|
"pluginName": "@salesforce/plugin-apex",
|
|
214
333
|
"pluginType": "core",
|
|
215
334
|
"strict": true,
|
|
216
|
-
"summary": "
|
|
335
|
+
"summary": "Invoke Apex tests in an org.",
|
|
217
336
|
"enableJsonFlag": true,
|
|
218
337
|
"isESM": true,
|
|
219
338
|
"relativePath": [
|
|
220
339
|
"lib",
|
|
221
340
|
"commands",
|
|
222
341
|
"apex",
|
|
223
|
-
"
|
|
224
|
-
"
|
|
342
|
+
"run",
|
|
343
|
+
"test.js"
|
|
225
344
|
],
|
|
226
345
|
"aliasPermutations": [
|
|
227
|
-
"force:apex:
|
|
228
|
-
"apex:force:
|
|
229
|
-
"apex:
|
|
230
|
-
"apex:
|
|
231
|
-
"force:
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
-
"force:
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
-
"
|
|
239
|
-
"force:apex:
|
|
240
|
-
"apex:force:
|
|
241
|
-
"apex:
|
|
242
|
-
"apex:
|
|
243
|
-
"force:
|
|
244
|
-
"
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
-
"force:
|
|
248
|
-
"
|
|
249
|
-
"
|
|
250
|
-
"
|
|
346
|
+
"force:apex:test:run",
|
|
347
|
+
"apex:force:test:run",
|
|
348
|
+
"apex:test:force:run",
|
|
349
|
+
"apex:test:run:force",
|
|
350
|
+
"force:test:apex:run",
|
|
351
|
+
"test:force:apex:run",
|
|
352
|
+
"test:apex:force:run",
|
|
353
|
+
"test:apex:run:force",
|
|
354
|
+
"force:test:run:apex",
|
|
355
|
+
"test:force:run:apex",
|
|
356
|
+
"test:run:force:apex",
|
|
357
|
+
"test:run:apex:force",
|
|
358
|
+
"force:apex:run:test",
|
|
359
|
+
"apex:force:run:test",
|
|
360
|
+
"apex:run:force:test",
|
|
361
|
+
"apex:run:test:force",
|
|
362
|
+
"force:run:apex:test",
|
|
363
|
+
"run:force:apex:test",
|
|
364
|
+
"run:apex:force:test",
|
|
365
|
+
"run:apex:test:force",
|
|
366
|
+
"force:run:test:apex",
|
|
367
|
+
"run:force:test:apex",
|
|
368
|
+
"run:test:force:apex",
|
|
369
|
+
"run:test:apex:force"
|
|
251
370
|
],
|
|
252
371
|
"permutations": [
|
|
253
|
-
"apex:
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
-
"apex:
|
|
257
|
-
"
|
|
258
|
-
"
|
|
372
|
+
"apex:run:test",
|
|
373
|
+
"run:apex:test",
|
|
374
|
+
"run:test:apex",
|
|
375
|
+
"apex:test:run",
|
|
376
|
+
"test:apex:run",
|
|
377
|
+
"test:run:apex"
|
|
259
378
|
]
|
|
260
379
|
},
|
|
261
|
-
"apex:
|
|
380
|
+
"apex:list:log": {
|
|
262
381
|
"aliases": [
|
|
263
|
-
"force:apex:
|
|
382
|
+
"force:apex:log:list"
|
|
264
383
|
],
|
|
265
384
|
"args": {},
|
|
266
385
|
"deprecateAliases": true,
|
|
267
|
-
"description": "
|
|
386
|
+
"description": "Run this command in a project to list the IDs and general information for all debug logs in your default org.\n\nTo fetch a specific log from your org, obtain the ID from this command's output, then run the “<%= config.bin %> apex log get” command.",
|
|
268
387
|
"examples": [
|
|
269
|
-
"
|
|
270
|
-
"Similar to previous example, but
|
|
271
|
-
"Also retrieve code coverage results and output in JSON format:\n<%= config.bin %> <%= command.id %> --test-run-id <test run id> --code-coverage --json",
|
|
272
|
-
"Specify a directory in which to save the test results from the org with the specified username (rather than your default org):\n<%= config.bin %> <%= command.id %> --test-run-id <test run id> --code-coverage --output-dir <path to outputdir> --target-org me@myorg'"
|
|
388
|
+
"List the IDs and information about the debug logs in your default org:\n<%= config.bin %> <%= command.id %>",
|
|
389
|
+
"Similar to previous example, but use the org with the specified username:\n<%= config.bin %> <%= command.id %> --target-org me@my.org"
|
|
273
390
|
],
|
|
274
391
|
"flags": {
|
|
275
392
|
"json": {
|
|
@@ -322,150 +439,72 @@
|
|
|
322
439
|
"hasDynamicHelp": false,
|
|
323
440
|
"multiple": false,
|
|
324
441
|
"type": "option"
|
|
325
|
-
},
|
|
326
|
-
"test-run-id": {
|
|
327
|
-
"aliases": [
|
|
328
|
-
"testrunid"
|
|
329
|
-
],
|
|
330
|
-
"char": "i",
|
|
331
|
-
"deprecateAliases": true,
|
|
332
|
-
"name": "test-run-id",
|
|
333
|
-
"required": true,
|
|
334
|
-
"summary": "ID of the test run.",
|
|
335
|
-
"hasDynamicHelp": false,
|
|
336
|
-
"multiple": false,
|
|
337
|
-
"type": "option"
|
|
338
|
-
},
|
|
339
|
-
"code-coverage": {
|
|
340
|
-
"aliases": [
|
|
341
|
-
"codecoverage"
|
|
342
|
-
],
|
|
343
|
-
"char": "c",
|
|
344
|
-
"deprecateAliases": true,
|
|
345
|
-
"name": "code-coverage",
|
|
346
|
-
"summary": "Retrieve code coverage results.",
|
|
347
|
-
"allowNo": false,
|
|
348
|
-
"type": "boolean"
|
|
349
|
-
},
|
|
350
|
-
"detailed-coverage": {
|
|
351
|
-
"dependsOn": [
|
|
352
|
-
"code-coverage"
|
|
353
|
-
],
|
|
354
|
-
"name": "detailed-coverage",
|
|
355
|
-
"summary": "Display detailed code coverage per test.",
|
|
356
|
-
"allowNo": false,
|
|
357
|
-
"type": "boolean"
|
|
358
|
-
},
|
|
359
|
-
"output-dir": {
|
|
360
|
-
"aliases": [
|
|
361
|
-
"outputdir",
|
|
362
|
-
"output-directory"
|
|
363
|
-
],
|
|
364
|
-
"char": "d",
|
|
365
|
-
"deprecateAliases": true,
|
|
366
|
-
"name": "output-dir",
|
|
367
|
-
"summary": "Directory in which to store test result files.",
|
|
368
|
-
"hasDynamicHelp": false,
|
|
369
|
-
"multiple": false,
|
|
370
|
-
"type": "option"
|
|
371
|
-
},
|
|
372
|
-
"result-format": {
|
|
373
|
-
"aliases": [
|
|
374
|
-
"resultformat"
|
|
375
|
-
],
|
|
376
|
-
"char": "r",
|
|
377
|
-
"deprecateAliases": true,
|
|
378
|
-
"name": "result-format",
|
|
379
|
-
"summary": "Format of the test results.",
|
|
380
|
-
"default": "human",
|
|
381
|
-
"hasDynamicHelp": false,
|
|
382
|
-
"multiple": false,
|
|
383
|
-
"options": [
|
|
384
|
-
"human",
|
|
385
|
-
"tap",
|
|
386
|
-
"junit",
|
|
387
|
-
"json"
|
|
388
|
-
],
|
|
389
|
-
"type": "option"
|
|
390
|
-
},
|
|
391
|
-
"concise": {
|
|
392
|
-
"name": "concise",
|
|
393
|
-
"summary": "Display only failed test results; works with human-readable output only.",
|
|
394
|
-
"allowNo": false,
|
|
395
|
-
"type": "boolean"
|
|
396
442
|
}
|
|
397
443
|
},
|
|
398
444
|
"hasDynamicHelp": true,
|
|
399
445
|
"hiddenAliases": [],
|
|
400
|
-
"id": "apex:
|
|
446
|
+
"id": "apex:list:log",
|
|
401
447
|
"pluginAlias": "@salesforce/plugin-apex",
|
|
402
448
|
"pluginName": "@salesforce/plugin-apex",
|
|
403
449
|
"pluginType": "core",
|
|
404
450
|
"strict": true,
|
|
405
|
-
"summary": "Display
|
|
451
|
+
"summary": "Display a list of IDs and general information about debug logs.",
|
|
406
452
|
"enableJsonFlag": true,
|
|
407
453
|
"isESM": true,
|
|
408
454
|
"relativePath": [
|
|
409
455
|
"lib",
|
|
410
456
|
"commands",
|
|
411
457
|
"apex",
|
|
412
|
-
"
|
|
413
|
-
"
|
|
458
|
+
"list",
|
|
459
|
+
"log.js"
|
|
414
460
|
],
|
|
415
461
|
"aliasPermutations": [
|
|
416
|
-
"force:apex:
|
|
417
|
-
"apex:force:
|
|
418
|
-
"apex:
|
|
419
|
-
"apex:
|
|
420
|
-
"force:
|
|
421
|
-
"
|
|
422
|
-
"
|
|
423
|
-
"
|
|
424
|
-
"force:
|
|
425
|
-
"
|
|
426
|
-
"
|
|
427
|
-
"
|
|
428
|
-
"force:apex:
|
|
429
|
-
"apex:force:
|
|
430
|
-
"apex:
|
|
431
|
-
"apex:
|
|
432
|
-
"force:
|
|
433
|
-
"
|
|
434
|
-
"
|
|
435
|
-
"
|
|
436
|
-
"force:
|
|
437
|
-
"
|
|
438
|
-
"
|
|
439
|
-
"
|
|
462
|
+
"force:apex:log:list",
|
|
463
|
+
"apex:force:log:list",
|
|
464
|
+
"apex:log:force:list",
|
|
465
|
+
"apex:log:list:force",
|
|
466
|
+
"force:log:apex:list",
|
|
467
|
+
"log:force:apex:list",
|
|
468
|
+
"log:apex:force:list",
|
|
469
|
+
"log:apex:list:force",
|
|
470
|
+
"force:log:list:apex",
|
|
471
|
+
"log:force:list:apex",
|
|
472
|
+
"log:list:force:apex",
|
|
473
|
+
"log:list:apex:force",
|
|
474
|
+
"force:apex:list:log",
|
|
475
|
+
"apex:force:list:log",
|
|
476
|
+
"apex:list:force:log",
|
|
477
|
+
"apex:list:log:force",
|
|
478
|
+
"force:list:apex:log",
|
|
479
|
+
"list:force:apex:log",
|
|
480
|
+
"list:apex:force:log",
|
|
481
|
+
"list:apex:log:force",
|
|
482
|
+
"force:list:log:apex",
|
|
483
|
+
"list:force:log:apex",
|
|
484
|
+
"list:log:force:apex",
|
|
485
|
+
"list:log:apex:force"
|
|
440
486
|
],
|
|
441
487
|
"permutations": [
|
|
442
|
-
"apex:
|
|
443
|
-
"
|
|
444
|
-
"
|
|
445
|
-
"apex:
|
|
446
|
-
"
|
|
447
|
-
"
|
|
488
|
+
"apex:list:log",
|
|
489
|
+
"list:apex:log",
|
|
490
|
+
"list:log:apex",
|
|
491
|
+
"apex:log:list",
|
|
492
|
+
"log:apex:list",
|
|
493
|
+
"log:list:apex"
|
|
448
494
|
]
|
|
449
495
|
},
|
|
450
|
-
"apex:
|
|
496
|
+
"apex:get:log": {
|
|
451
497
|
"aliases": [
|
|
452
|
-
"force:apex:
|
|
498
|
+
"force:apex:log:get"
|
|
453
499
|
],
|
|
454
500
|
"args": {},
|
|
455
501
|
"deprecateAliases": true,
|
|
456
|
-
"description": "
|
|
502
|
+
"description": "To get the IDs for your debug logs, run \"<%= config.bin %> apex log list\". Executing this command without flags returns the most recent log.",
|
|
457
503
|
"examples": [
|
|
458
|
-
"
|
|
459
|
-
"
|
|
460
|
-
"
|
|
461
|
-
"
|
|
462
|
-
"Run all tests in the org with the specified username with the specified test level; save the output to the specified directory:\n<%= config.bin %> <%= command.id %> --test-level RunLocalTests --output-dir <path to outputdir> --target-org me@my.org",
|
|
463
|
-
"Run all tests in the org asynchronously:\n<%= config.bin %> <%= command.id %> --target-org myscratch",
|
|
464
|
-
"Run all tests synchronously; the command waits to display the test results until all tests finish:\n<%= config.bin %> <%= command.id %> --synchronous",
|
|
465
|
-
"Run specific tests using the --test-level flag:\n<%= config.bin %> <%= command.id %> --test-level RunLocalTests",
|
|
466
|
-
"Run Apex tests on all the methods in the specified class; output results in Test Anything Protocol (TAP) format and request code coverage results:\n<%= config.bin %> <%= command.id %> --class-names TestA --class-names TestB --result-format tap --code-coverage",
|
|
467
|
-
"Run Apex tests on methods specified using the standard Class.method notation; if you specify a test class without a method, the command runs all methods in the class:\n<%= config.bin %> <%= command.id %> --tests TestA.excitingMethod --tests TestA.boringMethod --tests TestB",
|
|
468
|
-
"Run Apex tests on methods specified using the standard Class.method notation with a namespace:\n<%= config.bin %> <%= command.id %> --tests ns.TestA.excitingMethod --tests ns.TestA.boringMethod --tests ns.TestB"
|
|
504
|
+
"Fetch the log in your default org using an ID:\n<%= config.bin %> <%= command.id %> --log-id <log id>",
|
|
505
|
+
"Fetch the log in the org with the specified username using an ID:\n<%= config.bin %> <%= command.id %> --log-id <log id> --target-org me@my.org",
|
|
506
|
+
"Fetch the two most recent logs in your default org:\n<%= config.bin %> <%= command.id %> --number 2",
|
|
507
|
+
"Similar to previous example, but save the two log files in the specified directory:\n<%= config.bin %> <%= command.id %> --output-dir /Users/sfdxUser/logs --number 2"
|
|
469
508
|
],
|
|
470
509
|
"flags": {
|
|
471
510
|
"json": {
|
|
@@ -519,215 +558,105 @@
|
|
|
519
558
|
"multiple": false,
|
|
520
559
|
"type": "option"
|
|
521
560
|
},
|
|
522
|
-
"
|
|
523
|
-
"aliases": [
|
|
524
|
-
"codecoverage"
|
|
525
|
-
],
|
|
526
|
-
"char": "c",
|
|
527
|
-
"deprecateAliases": true,
|
|
528
|
-
"name": "code-coverage",
|
|
529
|
-
"summary": "Retrieve code coverage results.",
|
|
530
|
-
"allowNo": false,
|
|
531
|
-
"type": "boolean"
|
|
532
|
-
},
|
|
533
|
-
"output-dir": {
|
|
534
|
-
"aliases": [
|
|
535
|
-
"outputdir",
|
|
536
|
-
"output-directory"
|
|
537
|
-
],
|
|
538
|
-
"char": "d",
|
|
539
|
-
"deprecateAliases": true,
|
|
540
|
-
"name": "output-dir",
|
|
541
|
-
"summary": "Directory in which to store test run files.",
|
|
542
|
-
"hasDynamicHelp": false,
|
|
543
|
-
"multiple": false,
|
|
544
|
-
"type": "option"
|
|
545
|
-
},
|
|
546
|
-
"test-level": {
|
|
561
|
+
"log-id": {
|
|
547
562
|
"aliases": [
|
|
548
|
-
"
|
|
563
|
+
"logid"
|
|
549
564
|
],
|
|
550
|
-
"char": "
|
|
565
|
+
"char": "i",
|
|
551
566
|
"deprecateAliases": true,
|
|
552
|
-
"
|
|
553
|
-
"
|
|
554
|
-
"summary": "Level of tests to run; default is RunLocalTests.",
|
|
567
|
+
"name": "log-id",
|
|
568
|
+
"summary": "ID of the specific log to display.",
|
|
555
569
|
"hasDynamicHelp": false,
|
|
556
570
|
"multiple": false,
|
|
557
|
-
"options": [
|
|
558
|
-
"RunLocalTests",
|
|
559
|
-
"RunAllTestsInOrg",
|
|
560
|
-
"RunSpecifiedTests"
|
|
561
|
-
],
|
|
562
571
|
"type": "option"
|
|
563
572
|
},
|
|
564
|
-
"
|
|
565
|
-
"aliases": [
|
|
566
|
-
"classnames"
|
|
567
|
-
],
|
|
573
|
+
"number": {
|
|
568
574
|
"char": "n",
|
|
569
|
-
"
|
|
570
|
-
"
|
|
571
|
-
"exclusive": [
|
|
572
|
-
"suite-names",
|
|
573
|
-
"tests"
|
|
574
|
-
],
|
|
575
|
-
"name": "class-names",
|
|
576
|
-
"summary": "Apex test class names to run; default is all classes.",
|
|
577
|
-
"delimiter": ",",
|
|
578
|
-
"hasDynamicHelp": false,
|
|
579
|
-
"multiple": true,
|
|
580
|
-
"type": "option"
|
|
581
|
-
},
|
|
582
|
-
"result-format": {
|
|
583
|
-
"aliases": [
|
|
584
|
-
"resultformat"
|
|
585
|
-
],
|
|
586
|
-
"char": "r",
|
|
587
|
-
"deprecateAliases": true,
|
|
588
|
-
"name": "result-format",
|
|
589
|
-
"summary": "Format of the test results.",
|
|
590
|
-
"default": "human",
|
|
575
|
+
"name": "number",
|
|
576
|
+
"summary": "Number of the most recent logs to display.",
|
|
591
577
|
"hasDynamicHelp": false,
|
|
592
578
|
"multiple": false,
|
|
593
|
-
"options": [
|
|
594
|
-
"human",
|
|
595
|
-
"tap",
|
|
596
|
-
"junit",
|
|
597
|
-
"json"
|
|
598
|
-
],
|
|
599
579
|
"type": "option"
|
|
600
580
|
},
|
|
601
|
-
"
|
|
581
|
+
"output-dir": {
|
|
602
582
|
"aliases": [
|
|
603
|
-
"
|
|
583
|
+
"outputdir",
|
|
584
|
+
"output-directory"
|
|
604
585
|
],
|
|
605
|
-
"char": "
|
|
586
|
+
"char": "d",
|
|
606
587
|
"deprecateAliases": true,
|
|
607
|
-
"description": "
|
|
608
|
-
"
|
|
609
|
-
|
|
610
|
-
"tests"
|
|
611
|
-
],
|
|
612
|
-
"name": "suite-names",
|
|
613
|
-
"summary": "Apex test suite names to run.",
|
|
614
|
-
"delimiter": ",",
|
|
615
|
-
"hasDynamicHelp": false,
|
|
616
|
-
"multiple": true,
|
|
617
|
-
"type": "option"
|
|
618
|
-
},
|
|
619
|
-
"tests": {
|
|
620
|
-
"char": "t",
|
|
621
|
-
"description": "If you specify --tests, you can't specify --class-names or --suite-names\nFor multiple tests, repeat the flag for each.\n--tests Test1 --tests Test2",
|
|
622
|
-
"exclusive": [
|
|
623
|
-
"class-names",
|
|
624
|
-
"suite-names"
|
|
625
|
-
],
|
|
626
|
-
"name": "tests",
|
|
627
|
-
"summary": "Apex test class names or IDs and, if applicable, test methods to run; default is all tests.",
|
|
628
|
-
"delimiter": ",",
|
|
588
|
+
"description": "The location can be an absolute path or relative to the current working directory. The default is the current directory.",
|
|
589
|
+
"name": "output-dir",
|
|
590
|
+
"summary": "Directory for saving the log files.",
|
|
629
591
|
"hasDynamicHelp": false,
|
|
630
|
-
"multiple": true,
|
|
631
|
-
"type": "option"
|
|
632
|
-
},
|
|
633
|
-
"wait": {
|
|
634
|
-
"char": "w",
|
|
635
|
-
"name": "wait",
|
|
636
|
-
"summary": "Sets the streaming client socket timeout in minutes; specify a longer wait time if timeouts occur frequently.",
|
|
637
|
-
"hasDynamicHelp": true,
|
|
638
592
|
"multiple": false,
|
|
639
593
|
"type": "option"
|
|
640
|
-
},
|
|
641
|
-
"synchronous": {
|
|
642
|
-
"char": "y",
|
|
643
|
-
"name": "synchronous",
|
|
644
|
-
"summary": "Runs test methods from a single Apex class synchronously; if not specified, tests are run asynchronously.",
|
|
645
|
-
"allowNo": false,
|
|
646
|
-
"type": "boolean"
|
|
647
|
-
},
|
|
648
|
-
"detailed-coverage": {
|
|
649
|
-
"aliases": [
|
|
650
|
-
"detailedcoverage"
|
|
651
|
-
],
|
|
652
|
-
"char": "v",
|
|
653
|
-
"dependsOn": [
|
|
654
|
-
"code-coverage"
|
|
655
|
-
],
|
|
656
|
-
"deprecateAliases": true,
|
|
657
|
-
"name": "detailed-coverage",
|
|
658
|
-
"summary": "Display detailed code coverage per test.",
|
|
659
|
-
"allowNo": false,
|
|
660
|
-
"type": "boolean"
|
|
661
|
-
},
|
|
662
|
-
"concise": {
|
|
663
|
-
"name": "concise",
|
|
664
|
-
"summary": "Display only failed test results; works with human-readable output only.",
|
|
665
|
-
"allowNo": false,
|
|
666
|
-
"type": "boolean"
|
|
667
594
|
}
|
|
668
595
|
},
|
|
669
596
|
"hasDynamicHelp": true,
|
|
670
597
|
"hiddenAliases": [],
|
|
671
|
-
"id": "apex:
|
|
598
|
+
"id": "apex:get:log",
|
|
672
599
|
"pluginAlias": "@salesforce/plugin-apex",
|
|
673
600
|
"pluginName": "@salesforce/plugin-apex",
|
|
674
601
|
"pluginType": "core",
|
|
675
602
|
"strict": true,
|
|
676
|
-
"summary": "
|
|
603
|
+
"summary": "Fetch the specified log or given number of most recent logs from the org.",
|
|
677
604
|
"enableJsonFlag": true,
|
|
678
605
|
"isESM": true,
|
|
679
606
|
"relativePath": [
|
|
680
607
|
"lib",
|
|
681
608
|
"commands",
|
|
682
609
|
"apex",
|
|
683
|
-
"
|
|
684
|
-
"
|
|
610
|
+
"get",
|
|
611
|
+
"log.js"
|
|
685
612
|
],
|
|
686
613
|
"aliasPermutations": [
|
|
687
|
-
"force:apex:
|
|
688
|
-
"apex:force:
|
|
689
|
-
"apex:
|
|
690
|
-
"apex:
|
|
691
|
-
"force:
|
|
692
|
-
"
|
|
693
|
-
"
|
|
694
|
-
"
|
|
695
|
-
"force:
|
|
696
|
-
"
|
|
697
|
-
"
|
|
698
|
-
"
|
|
699
|
-
"force:apex:
|
|
700
|
-
"apex:force:
|
|
701
|
-
"apex:
|
|
702
|
-
"apex:
|
|
703
|
-
"force:
|
|
704
|
-
"
|
|
705
|
-
"
|
|
706
|
-
"
|
|
707
|
-
"force:
|
|
708
|
-
"
|
|
709
|
-
"
|
|
710
|
-
"
|
|
614
|
+
"force:apex:log:get",
|
|
615
|
+
"apex:force:log:get",
|
|
616
|
+
"apex:log:force:get",
|
|
617
|
+
"apex:log:get:force",
|
|
618
|
+
"force:log:apex:get",
|
|
619
|
+
"log:force:apex:get",
|
|
620
|
+
"log:apex:force:get",
|
|
621
|
+
"log:apex:get:force",
|
|
622
|
+
"force:log:get:apex",
|
|
623
|
+
"log:force:get:apex",
|
|
624
|
+
"log:get:force:apex",
|
|
625
|
+
"log:get:apex:force",
|
|
626
|
+
"force:apex:get:log",
|
|
627
|
+
"apex:force:get:log",
|
|
628
|
+
"apex:get:force:log",
|
|
629
|
+
"apex:get:log:force",
|
|
630
|
+
"force:get:apex:log",
|
|
631
|
+
"get:force:apex:log",
|
|
632
|
+
"get:apex:force:log",
|
|
633
|
+
"get:apex:log:force",
|
|
634
|
+
"force:get:log:apex",
|
|
635
|
+
"get:force:log:apex",
|
|
636
|
+
"get:log:force:apex",
|
|
637
|
+
"get:log:apex:force"
|
|
711
638
|
],
|
|
712
639
|
"permutations": [
|
|
713
|
-
"apex:
|
|
714
|
-
"
|
|
715
|
-
"
|
|
716
|
-
"apex:
|
|
717
|
-
"
|
|
718
|
-
"
|
|
640
|
+
"apex:get:log",
|
|
641
|
+
"get:apex:log",
|
|
642
|
+
"get:log:apex",
|
|
643
|
+
"apex:log:get",
|
|
644
|
+
"log:apex:get",
|
|
645
|
+
"log:get:apex"
|
|
719
646
|
]
|
|
720
647
|
},
|
|
721
|
-
"apex:
|
|
648
|
+
"apex:get:test": {
|
|
722
649
|
"aliases": [
|
|
723
|
-
"force:apex:
|
|
650
|
+
"force:apex:test:report"
|
|
724
651
|
],
|
|
725
652
|
"args": {},
|
|
726
653
|
"deprecateAliases": true,
|
|
727
|
-
"description": "
|
|
654
|
+
"description": "Provide a test run ID to display test results for an enqueued or completed asynchronous test run. The test run ID is displayed after running the \"<%= config.bin %> apex test run\" command.\n\nTo see code coverage results, use the --code-coverage flag with --result-format. The output displays a high-level summary of the test run and the code coverage values for classes in your org. If you specify human-readable result format, use the --detailed-coverage flag to see detailed coverage results for each test method run.",
|
|
728
655
|
"examples": [
|
|
729
|
-
"
|
|
730
|
-
"Similar to previous example, but
|
|
656
|
+
"Display test results for your default org using a test run ID:\n<%= config.bin %> <%= command.id %> --test-run-id <test run id>",
|
|
657
|
+
"Similar to previous example, but output the result in JUnit format:\n<%= config.bin %> <%= command.id %> --test-run-id <test run id> --result-format junit",
|
|
658
|
+
"Also retrieve code coverage results and output in JSON format:\n<%= config.bin %> <%= command.id %> --test-run-id <test run id> --code-coverage --json",
|
|
659
|
+
"Specify a directory in which to save the test results from the org with the specified username (rather than your default org):\n<%= config.bin %> <%= command.id %> --test-run-id <test run id> --code-coverage --output-dir <path to outputdir> --target-org me@myorg'"
|
|
731
660
|
],
|
|
732
661
|
"flags": {
|
|
733
662
|
"json": {
|
|
@@ -780,58 +709,129 @@
|
|
|
780
709
|
"hasDynamicHelp": false,
|
|
781
710
|
"multiple": false,
|
|
782
711
|
"type": "option"
|
|
712
|
+
},
|
|
713
|
+
"test-run-id": {
|
|
714
|
+
"aliases": [
|
|
715
|
+
"testrunid"
|
|
716
|
+
],
|
|
717
|
+
"char": "i",
|
|
718
|
+
"deprecateAliases": true,
|
|
719
|
+
"name": "test-run-id",
|
|
720
|
+
"required": true,
|
|
721
|
+
"summary": "ID of the test run.",
|
|
722
|
+
"hasDynamicHelp": false,
|
|
723
|
+
"multiple": false,
|
|
724
|
+
"type": "option"
|
|
725
|
+
},
|
|
726
|
+
"code-coverage": {
|
|
727
|
+
"aliases": [
|
|
728
|
+
"codecoverage"
|
|
729
|
+
],
|
|
730
|
+
"char": "c",
|
|
731
|
+
"deprecateAliases": true,
|
|
732
|
+
"name": "code-coverage",
|
|
733
|
+
"summary": "Retrieve code coverage results.",
|
|
734
|
+
"allowNo": false,
|
|
735
|
+
"type": "boolean"
|
|
736
|
+
},
|
|
737
|
+
"detailed-coverage": {
|
|
738
|
+
"dependsOn": [
|
|
739
|
+
"code-coverage"
|
|
740
|
+
],
|
|
741
|
+
"name": "detailed-coverage",
|
|
742
|
+
"summary": "Display detailed code coverage per test.",
|
|
743
|
+
"allowNo": false,
|
|
744
|
+
"type": "boolean"
|
|
745
|
+
},
|
|
746
|
+
"output-dir": {
|
|
747
|
+
"aliases": [
|
|
748
|
+
"outputdir",
|
|
749
|
+
"output-directory"
|
|
750
|
+
],
|
|
751
|
+
"char": "d",
|
|
752
|
+
"deprecateAliases": true,
|
|
753
|
+
"name": "output-dir",
|
|
754
|
+
"summary": "Directory in which to store test result files.",
|
|
755
|
+
"hasDynamicHelp": false,
|
|
756
|
+
"multiple": false,
|
|
757
|
+
"type": "option"
|
|
758
|
+
},
|
|
759
|
+
"result-format": {
|
|
760
|
+
"aliases": [
|
|
761
|
+
"resultformat"
|
|
762
|
+
],
|
|
763
|
+
"char": "r",
|
|
764
|
+
"deprecateAliases": true,
|
|
765
|
+
"name": "result-format",
|
|
766
|
+
"summary": "Format of the test results.",
|
|
767
|
+
"default": "human",
|
|
768
|
+
"hasDynamicHelp": false,
|
|
769
|
+
"multiple": false,
|
|
770
|
+
"options": [
|
|
771
|
+
"human",
|
|
772
|
+
"tap",
|
|
773
|
+
"junit",
|
|
774
|
+
"json"
|
|
775
|
+
],
|
|
776
|
+
"type": "option"
|
|
777
|
+
},
|
|
778
|
+
"concise": {
|
|
779
|
+
"name": "concise",
|
|
780
|
+
"summary": "Display only failed test results; works with human-readable output only.",
|
|
781
|
+
"allowNo": false,
|
|
782
|
+
"type": "boolean"
|
|
783
783
|
}
|
|
784
784
|
},
|
|
785
785
|
"hasDynamicHelp": true,
|
|
786
786
|
"hiddenAliases": [],
|
|
787
|
-
"id": "apex:
|
|
787
|
+
"id": "apex:get:test",
|
|
788
788
|
"pluginAlias": "@salesforce/plugin-apex",
|
|
789
789
|
"pluginName": "@salesforce/plugin-apex",
|
|
790
790
|
"pluginType": "core",
|
|
791
791
|
"strict": true,
|
|
792
|
-
"summary": "Display
|
|
792
|
+
"summary": "Display test results for a specific asynchronous test run.",
|
|
793
793
|
"enableJsonFlag": true,
|
|
794
794
|
"isESM": true,
|
|
795
795
|
"relativePath": [
|
|
796
796
|
"lib",
|
|
797
797
|
"commands",
|
|
798
798
|
"apex",
|
|
799
|
-
"
|
|
800
|
-
"
|
|
799
|
+
"get",
|
|
800
|
+
"test.js"
|
|
801
801
|
],
|
|
802
802
|
"aliasPermutations": [
|
|
803
|
-
"force:apex:
|
|
804
|
-
"apex:force:
|
|
805
|
-
"apex:
|
|
806
|
-
"apex:
|
|
807
|
-
"force:
|
|
808
|
-
"
|
|
809
|
-
"
|
|
810
|
-
"
|
|
811
|
-
"force:
|
|
812
|
-
"
|
|
813
|
-
"
|
|
814
|
-
"
|
|
815
|
-
"force:apex:
|
|
816
|
-
"apex:force:
|
|
817
|
-
"apex:
|
|
818
|
-
"apex:
|
|
819
|
-
"force:
|
|
820
|
-
"
|
|
821
|
-
"
|
|
822
|
-
"
|
|
823
|
-
"force:
|
|
824
|
-
"
|
|
825
|
-
"
|
|
826
|
-
"
|
|
803
|
+
"force:apex:test:report",
|
|
804
|
+
"apex:force:test:report",
|
|
805
|
+
"apex:test:force:report",
|
|
806
|
+
"apex:test:report:force",
|
|
807
|
+
"force:test:apex:report",
|
|
808
|
+
"test:force:apex:report",
|
|
809
|
+
"test:apex:force:report",
|
|
810
|
+
"test:apex:report:force",
|
|
811
|
+
"force:test:report:apex",
|
|
812
|
+
"test:force:report:apex",
|
|
813
|
+
"test:report:force:apex",
|
|
814
|
+
"test:report:apex:force",
|
|
815
|
+
"force:apex:report:test",
|
|
816
|
+
"apex:force:report:test",
|
|
817
|
+
"apex:report:force:test",
|
|
818
|
+
"apex:report:test:force",
|
|
819
|
+
"force:report:apex:test",
|
|
820
|
+
"report:force:apex:test",
|
|
821
|
+
"report:apex:force:test",
|
|
822
|
+
"report:apex:test:force",
|
|
823
|
+
"force:report:test:apex",
|
|
824
|
+
"report:force:test:apex",
|
|
825
|
+
"report:test:force:apex",
|
|
826
|
+
"report:test:apex:force"
|
|
827
827
|
],
|
|
828
828
|
"permutations": [
|
|
829
|
-
"apex:
|
|
830
|
-
"
|
|
831
|
-
"
|
|
832
|
-
"apex:
|
|
833
|
-
"
|
|
834
|
-
"
|
|
829
|
+
"apex:get:test",
|
|
830
|
+
"get:apex:test",
|
|
831
|
+
"get:test:apex",
|
|
832
|
+
"apex:test:get",
|
|
833
|
+
"test:apex:get",
|
|
834
|
+
"test:get:apex"
|
|
835
835
|
]
|
|
836
836
|
},
|
|
837
837
|
"apex:tail:log": {
|
|
@@ -978,5 +978,5 @@
|
|
|
978
978
|
]
|
|
979
979
|
}
|
|
980
980
|
},
|
|
981
|
-
"version": "3.6.
|
|
981
|
+
"version": "3.6.13"
|
|
982
982
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-apex",
|
|
3
3
|
"description": "Apex commands",
|
|
4
|
-
"version": "3.6.
|
|
4
|
+
"version": "3.6.13",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@salesforce/apex-node": "^8.1.
|
|
8
|
+
"@salesforce/apex-node": "^8.1.20",
|
|
9
9
|
"@salesforce/core": "^8.8.6",
|
|
10
10
|
"@salesforce/kit": "^3.2.3",
|
|
11
11
|
"@salesforce/sf-plugins-core": "^12.2.1",
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
"@oclif/plugin-command-snapshot": "^5.2.37",
|
|
17
17
|
"@salesforce/cli-plugins-testkit": "^5.3.39",
|
|
18
18
|
"@salesforce/dev-scripts": "^10.2.11",
|
|
19
|
-
"@salesforce/plugin-command-reference": "^3.1.
|
|
20
|
-
"eslint-plugin-sf-plugin": "^1.20.
|
|
21
|
-
"oclif": "^4.17.
|
|
19
|
+
"@salesforce/plugin-command-reference": "^3.1.49",
|
|
20
|
+
"eslint-plugin-sf-plugin": "^1.20.19",
|
|
21
|
+
"oclif": "^4.17.43",
|
|
22
22
|
"ts-node": "^10.9.2",
|
|
23
|
-
"typescript": "^5.8.
|
|
23
|
+
"typescript": "^5.8.3"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">=18.0.0"
|
|
@@ -217,7 +217,7 @@
|
|
|
217
217
|
"exports": "./lib/index.js",
|
|
218
218
|
"type": "module",
|
|
219
219
|
"sfdx": {
|
|
220
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.6.
|
|
221
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.6.
|
|
220
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.6.13.crt",
|
|
221
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.6.13.sig"
|
|
222
222
|
}
|
|
223
223
|
}
|