@salesforce/plugin-apex 3.0.17 → 3.0.19
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.lock +1201 -226
- package/oclif.manifest.json +252 -252
- package/package.json +9 -9
package/oclif.manifest.json
CHANGED
|
@@ -98,257 +98,6 @@
|
|
|
98
98
|
"run:apex"
|
|
99
99
|
]
|
|
100
100
|
},
|
|
101
|
-
"apex:run:test": {
|
|
102
|
-
"aliases": [
|
|
103
|
-
"force:apex:test:run"
|
|
104
|
-
],
|
|
105
|
-
"args": {},
|
|
106
|
-
"deprecateAliases": true,
|
|
107
|
-
"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\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.",
|
|
108
|
-
"examples": [
|
|
109
|
-
"Run all Apex tests and suites in your default org:\n<%= config.bin %> <%= command.id %>",
|
|
110
|
-
"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",
|
|
111
|
-
"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",
|
|
112
|
-
"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",
|
|
113
|
-
"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"
|
|
114
|
-
],
|
|
115
|
-
"flags": {
|
|
116
|
-
"json": {
|
|
117
|
-
"description": "Format output as json.",
|
|
118
|
-
"helpGroup": "GLOBAL",
|
|
119
|
-
"name": "json",
|
|
120
|
-
"allowNo": false,
|
|
121
|
-
"type": "boolean"
|
|
122
|
-
},
|
|
123
|
-
"target-org": {
|
|
124
|
-
"aliases": [
|
|
125
|
-
"targetusername",
|
|
126
|
-
"u"
|
|
127
|
-
],
|
|
128
|
-
"char": "o",
|
|
129
|
-
"deprecateAliases": true,
|
|
130
|
-
"name": "target-org",
|
|
131
|
-
"noCacheDefault": true,
|
|
132
|
-
"required": true,
|
|
133
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
134
|
-
"hasDynamicHelp": true,
|
|
135
|
-
"multiple": false,
|
|
136
|
-
"type": "option"
|
|
137
|
-
},
|
|
138
|
-
"api-version": {
|
|
139
|
-
"aliases": [
|
|
140
|
-
"apiversion"
|
|
141
|
-
],
|
|
142
|
-
"deprecateAliases": true,
|
|
143
|
-
"description": "Override the api version used for api requests made by this command",
|
|
144
|
-
"name": "api-version",
|
|
145
|
-
"hasDynamicHelp": false,
|
|
146
|
-
"multiple": false,
|
|
147
|
-
"type": "option"
|
|
148
|
-
},
|
|
149
|
-
"loglevel": {
|
|
150
|
-
"deprecated": {
|
|
151
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
152
|
-
},
|
|
153
|
-
"hidden": true,
|
|
154
|
-
"name": "loglevel",
|
|
155
|
-
"hasDynamicHelp": false,
|
|
156
|
-
"multiple": false,
|
|
157
|
-
"type": "option"
|
|
158
|
-
},
|
|
159
|
-
"code-coverage": {
|
|
160
|
-
"aliases": [
|
|
161
|
-
"codecoverage"
|
|
162
|
-
],
|
|
163
|
-
"char": "c",
|
|
164
|
-
"deprecateAliases": true,
|
|
165
|
-
"name": "code-coverage",
|
|
166
|
-
"summary": "Retrieve code coverage results.",
|
|
167
|
-
"allowNo": false,
|
|
168
|
-
"type": "boolean"
|
|
169
|
-
},
|
|
170
|
-
"output-dir": {
|
|
171
|
-
"aliases": [
|
|
172
|
-
"outputdir",
|
|
173
|
-
"output-directory"
|
|
174
|
-
],
|
|
175
|
-
"char": "d",
|
|
176
|
-
"deprecateAliases": true,
|
|
177
|
-
"name": "output-dir",
|
|
178
|
-
"summary": "Directory in which to store test run files.",
|
|
179
|
-
"hasDynamicHelp": false,
|
|
180
|
-
"multiple": false,
|
|
181
|
-
"type": "option"
|
|
182
|
-
},
|
|
183
|
-
"test-level": {
|
|
184
|
-
"aliases": [
|
|
185
|
-
"testlevel"
|
|
186
|
-
],
|
|
187
|
-
"char": "l",
|
|
188
|
-
"deprecateAliases": true,
|
|
189
|
-
"description": "Here's what the levels mean:\n\n- RunSpecifiedTests — Only the tests that you specify are run.\n- RunLocalTests — All tests in your org are run, except the ones that originate from installed managed packages.\n- RunAllTestsInOrg — All tests are in your org and in installed managed packages are run",
|
|
190
|
-
"name": "test-level",
|
|
191
|
-
"summary": "Level of tests to run; default is RunLocalTests.",
|
|
192
|
-
"hasDynamicHelp": false,
|
|
193
|
-
"multiple": false,
|
|
194
|
-
"options": [
|
|
195
|
-
"RunLocalTests",
|
|
196
|
-
"RunAllTestsInOrg",
|
|
197
|
-
"RunSpecifiedTests"
|
|
198
|
-
],
|
|
199
|
-
"type": "option"
|
|
200
|
-
},
|
|
201
|
-
"class-names": {
|
|
202
|
-
"aliases": [
|
|
203
|
-
"classnames"
|
|
204
|
-
],
|
|
205
|
-
"char": "n",
|
|
206
|
-
"deprecateAliases": true,
|
|
207
|
-
"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",
|
|
208
|
-
"exclusive": [
|
|
209
|
-
"suite-names",
|
|
210
|
-
"tests"
|
|
211
|
-
],
|
|
212
|
-
"name": "class-names",
|
|
213
|
-
"summary": "Apex test class names to run; default is all classes.",
|
|
214
|
-
"delimiter": ",",
|
|
215
|
-
"hasDynamicHelp": false,
|
|
216
|
-
"multiple": true,
|
|
217
|
-
"type": "option"
|
|
218
|
-
},
|
|
219
|
-
"result-format": {
|
|
220
|
-
"aliases": [
|
|
221
|
-
"resultformat"
|
|
222
|
-
],
|
|
223
|
-
"char": "r",
|
|
224
|
-
"deprecateAliases": true,
|
|
225
|
-
"name": "result-format",
|
|
226
|
-
"summary": "Format of the test results.",
|
|
227
|
-
"default": "human",
|
|
228
|
-
"hasDynamicHelp": false,
|
|
229
|
-
"multiple": false,
|
|
230
|
-
"options": [
|
|
231
|
-
"human",
|
|
232
|
-
"tap",
|
|
233
|
-
"junit",
|
|
234
|
-
"json"
|
|
235
|
-
],
|
|
236
|
-
"type": "option"
|
|
237
|
-
},
|
|
238
|
-
"suite-names": {
|
|
239
|
-
"aliases": [
|
|
240
|
-
"suitenames"
|
|
241
|
-
],
|
|
242
|
-
"char": "s",
|
|
243
|
-
"deprecateAliases": true,
|
|
244
|
-
"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",
|
|
245
|
-
"exclusive": [
|
|
246
|
-
"class-names",
|
|
247
|
-
"tests"
|
|
248
|
-
],
|
|
249
|
-
"name": "suite-names",
|
|
250
|
-
"summary": "Apex test suite names to run.",
|
|
251
|
-
"delimiter": ",",
|
|
252
|
-
"hasDynamicHelp": false,
|
|
253
|
-
"multiple": true,
|
|
254
|
-
"type": "option"
|
|
255
|
-
},
|
|
256
|
-
"tests": {
|
|
257
|
-
"char": "t",
|
|
258
|
-
"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",
|
|
259
|
-
"exclusive": [
|
|
260
|
-
"class-names",
|
|
261
|
-
"suite-names"
|
|
262
|
-
],
|
|
263
|
-
"name": "tests",
|
|
264
|
-
"summary": "Apex test class names or IDs and, if applicable, test methods to run; default is all tests.",
|
|
265
|
-
"delimiter": ",",
|
|
266
|
-
"hasDynamicHelp": false,
|
|
267
|
-
"multiple": true,
|
|
268
|
-
"type": "option"
|
|
269
|
-
},
|
|
270
|
-
"wait": {
|
|
271
|
-
"char": "w",
|
|
272
|
-
"name": "wait",
|
|
273
|
-
"summary": "Sets the streaming client socket timeout in minutes; specify a longer wait time if timeouts occur frequently.",
|
|
274
|
-
"hasDynamicHelp": false,
|
|
275
|
-
"multiple": false,
|
|
276
|
-
"type": "option"
|
|
277
|
-
},
|
|
278
|
-
"synchronous": {
|
|
279
|
-
"char": "y",
|
|
280
|
-
"name": "synchronous",
|
|
281
|
-
"summary": "Runs test methods from a single Apex class synchronously; if not specified, tests are run asynchronously.",
|
|
282
|
-
"allowNo": false,
|
|
283
|
-
"type": "boolean"
|
|
284
|
-
},
|
|
285
|
-
"detailed-coverage": {
|
|
286
|
-
"aliases": [
|
|
287
|
-
"detailedcoverage"
|
|
288
|
-
],
|
|
289
|
-
"char": "v",
|
|
290
|
-
"dependsOn": [
|
|
291
|
-
"code-coverage"
|
|
292
|
-
],
|
|
293
|
-
"deprecateAliases": true,
|
|
294
|
-
"name": "detailed-coverage",
|
|
295
|
-
"summary": "Display detailed code coverage per test.",
|
|
296
|
-
"allowNo": false,
|
|
297
|
-
"type": "boolean"
|
|
298
|
-
}
|
|
299
|
-
},
|
|
300
|
-
"hasDynamicHelp": true,
|
|
301
|
-
"hiddenAliases": [],
|
|
302
|
-
"id": "apex:run:test",
|
|
303
|
-
"pluginAlias": "@salesforce/plugin-apex",
|
|
304
|
-
"pluginName": "@salesforce/plugin-apex",
|
|
305
|
-
"pluginType": "core",
|
|
306
|
-
"strict": true,
|
|
307
|
-
"summary": "Invoke Apex tests in an org.",
|
|
308
|
-
"enableJsonFlag": true,
|
|
309
|
-
"isESM": true,
|
|
310
|
-
"relativePath": [
|
|
311
|
-
"lib",
|
|
312
|
-
"commands",
|
|
313
|
-
"apex",
|
|
314
|
-
"run",
|
|
315
|
-
"test.js"
|
|
316
|
-
],
|
|
317
|
-
"aliasPermutations": [
|
|
318
|
-
"force:apex:test:run",
|
|
319
|
-
"apex:force:test:run",
|
|
320
|
-
"apex:test:force:run",
|
|
321
|
-
"apex:test:run:force",
|
|
322
|
-
"force:test:apex:run",
|
|
323
|
-
"test:force:apex:run",
|
|
324
|
-
"test:apex:force:run",
|
|
325
|
-
"test:apex:run:force",
|
|
326
|
-
"force:test:run:apex",
|
|
327
|
-
"test:force:run:apex",
|
|
328
|
-
"test:run:force:apex",
|
|
329
|
-
"test:run:apex:force",
|
|
330
|
-
"force:apex:run:test",
|
|
331
|
-
"apex:force:run:test",
|
|
332
|
-
"apex:run:force:test",
|
|
333
|
-
"apex:run:test:force",
|
|
334
|
-
"force:run:apex:test",
|
|
335
|
-
"run:force:apex:test",
|
|
336
|
-
"run:apex:force:test",
|
|
337
|
-
"run:apex:test:force",
|
|
338
|
-
"force:run:test:apex",
|
|
339
|
-
"run:force:test:apex",
|
|
340
|
-
"run:test:force:apex",
|
|
341
|
-
"run:test:apex:force"
|
|
342
|
-
],
|
|
343
|
-
"permutations": [
|
|
344
|
-
"apex:run:test",
|
|
345
|
-
"run:apex:test",
|
|
346
|
-
"run:test:apex",
|
|
347
|
-
"apex:test:run",
|
|
348
|
-
"test:apex:run",
|
|
349
|
-
"test:run:apex"
|
|
350
|
-
]
|
|
351
|
-
},
|
|
352
101
|
"apex:get:log": {
|
|
353
102
|
"aliases": [
|
|
354
103
|
"force:apex:log:get"
|
|
@@ -767,6 +516,257 @@
|
|
|
767
516
|
"log:list:apex"
|
|
768
517
|
]
|
|
769
518
|
},
|
|
519
|
+
"apex:run:test": {
|
|
520
|
+
"aliases": [
|
|
521
|
+
"force:apex:test:run"
|
|
522
|
+
],
|
|
523
|
+
"args": {},
|
|
524
|
+
"deprecateAliases": true,
|
|
525
|
+
"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\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.",
|
|
526
|
+
"examples": [
|
|
527
|
+
"Run all Apex tests and suites in your default org:\n<%= config.bin %> <%= command.id %>",
|
|
528
|
+
"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",
|
|
529
|
+
"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",
|
|
530
|
+
"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",
|
|
531
|
+
"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"
|
|
532
|
+
],
|
|
533
|
+
"flags": {
|
|
534
|
+
"json": {
|
|
535
|
+
"description": "Format output as json.",
|
|
536
|
+
"helpGroup": "GLOBAL",
|
|
537
|
+
"name": "json",
|
|
538
|
+
"allowNo": false,
|
|
539
|
+
"type": "boolean"
|
|
540
|
+
},
|
|
541
|
+
"target-org": {
|
|
542
|
+
"aliases": [
|
|
543
|
+
"targetusername",
|
|
544
|
+
"u"
|
|
545
|
+
],
|
|
546
|
+
"char": "o",
|
|
547
|
+
"deprecateAliases": true,
|
|
548
|
+
"name": "target-org",
|
|
549
|
+
"noCacheDefault": true,
|
|
550
|
+
"required": true,
|
|
551
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
552
|
+
"hasDynamicHelp": true,
|
|
553
|
+
"multiple": false,
|
|
554
|
+
"type": "option"
|
|
555
|
+
},
|
|
556
|
+
"api-version": {
|
|
557
|
+
"aliases": [
|
|
558
|
+
"apiversion"
|
|
559
|
+
],
|
|
560
|
+
"deprecateAliases": true,
|
|
561
|
+
"description": "Override the api version used for api requests made by this command",
|
|
562
|
+
"name": "api-version",
|
|
563
|
+
"hasDynamicHelp": false,
|
|
564
|
+
"multiple": false,
|
|
565
|
+
"type": "option"
|
|
566
|
+
},
|
|
567
|
+
"loglevel": {
|
|
568
|
+
"deprecated": {
|
|
569
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
570
|
+
},
|
|
571
|
+
"hidden": true,
|
|
572
|
+
"name": "loglevel",
|
|
573
|
+
"hasDynamicHelp": false,
|
|
574
|
+
"multiple": false,
|
|
575
|
+
"type": "option"
|
|
576
|
+
},
|
|
577
|
+
"code-coverage": {
|
|
578
|
+
"aliases": [
|
|
579
|
+
"codecoverage"
|
|
580
|
+
],
|
|
581
|
+
"char": "c",
|
|
582
|
+
"deprecateAliases": true,
|
|
583
|
+
"name": "code-coverage",
|
|
584
|
+
"summary": "Retrieve code coverage results.",
|
|
585
|
+
"allowNo": false,
|
|
586
|
+
"type": "boolean"
|
|
587
|
+
},
|
|
588
|
+
"output-dir": {
|
|
589
|
+
"aliases": [
|
|
590
|
+
"outputdir",
|
|
591
|
+
"output-directory"
|
|
592
|
+
],
|
|
593
|
+
"char": "d",
|
|
594
|
+
"deprecateAliases": true,
|
|
595
|
+
"name": "output-dir",
|
|
596
|
+
"summary": "Directory in which to store test run files.",
|
|
597
|
+
"hasDynamicHelp": false,
|
|
598
|
+
"multiple": false,
|
|
599
|
+
"type": "option"
|
|
600
|
+
},
|
|
601
|
+
"test-level": {
|
|
602
|
+
"aliases": [
|
|
603
|
+
"testlevel"
|
|
604
|
+
],
|
|
605
|
+
"char": "l",
|
|
606
|
+
"deprecateAliases": true,
|
|
607
|
+
"description": "Here's what the levels mean:\n\n- RunSpecifiedTests — Only the tests that you specify are run.\n- RunLocalTests — All tests in your org are run, except the ones that originate from installed managed packages.\n- RunAllTestsInOrg — All tests are in your org and in installed managed packages are run",
|
|
608
|
+
"name": "test-level",
|
|
609
|
+
"summary": "Level of tests to run; default is RunLocalTests.",
|
|
610
|
+
"hasDynamicHelp": false,
|
|
611
|
+
"multiple": false,
|
|
612
|
+
"options": [
|
|
613
|
+
"RunLocalTests",
|
|
614
|
+
"RunAllTestsInOrg",
|
|
615
|
+
"RunSpecifiedTests"
|
|
616
|
+
],
|
|
617
|
+
"type": "option"
|
|
618
|
+
},
|
|
619
|
+
"class-names": {
|
|
620
|
+
"aliases": [
|
|
621
|
+
"classnames"
|
|
622
|
+
],
|
|
623
|
+
"char": "n",
|
|
624
|
+
"deprecateAliases": true,
|
|
625
|
+
"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",
|
|
626
|
+
"exclusive": [
|
|
627
|
+
"suite-names",
|
|
628
|
+
"tests"
|
|
629
|
+
],
|
|
630
|
+
"name": "class-names",
|
|
631
|
+
"summary": "Apex test class names to run; default is all classes.",
|
|
632
|
+
"delimiter": ",",
|
|
633
|
+
"hasDynamicHelp": false,
|
|
634
|
+
"multiple": true,
|
|
635
|
+
"type": "option"
|
|
636
|
+
},
|
|
637
|
+
"result-format": {
|
|
638
|
+
"aliases": [
|
|
639
|
+
"resultformat"
|
|
640
|
+
],
|
|
641
|
+
"char": "r",
|
|
642
|
+
"deprecateAliases": true,
|
|
643
|
+
"name": "result-format",
|
|
644
|
+
"summary": "Format of the test results.",
|
|
645
|
+
"default": "human",
|
|
646
|
+
"hasDynamicHelp": false,
|
|
647
|
+
"multiple": false,
|
|
648
|
+
"options": [
|
|
649
|
+
"human",
|
|
650
|
+
"tap",
|
|
651
|
+
"junit",
|
|
652
|
+
"json"
|
|
653
|
+
],
|
|
654
|
+
"type": "option"
|
|
655
|
+
},
|
|
656
|
+
"suite-names": {
|
|
657
|
+
"aliases": [
|
|
658
|
+
"suitenames"
|
|
659
|
+
],
|
|
660
|
+
"char": "s",
|
|
661
|
+
"deprecateAliases": true,
|
|
662
|
+
"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",
|
|
663
|
+
"exclusive": [
|
|
664
|
+
"class-names",
|
|
665
|
+
"tests"
|
|
666
|
+
],
|
|
667
|
+
"name": "suite-names",
|
|
668
|
+
"summary": "Apex test suite names to run.",
|
|
669
|
+
"delimiter": ",",
|
|
670
|
+
"hasDynamicHelp": false,
|
|
671
|
+
"multiple": true,
|
|
672
|
+
"type": "option"
|
|
673
|
+
},
|
|
674
|
+
"tests": {
|
|
675
|
+
"char": "t",
|
|
676
|
+
"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",
|
|
677
|
+
"exclusive": [
|
|
678
|
+
"class-names",
|
|
679
|
+
"suite-names"
|
|
680
|
+
],
|
|
681
|
+
"name": "tests",
|
|
682
|
+
"summary": "Apex test class names or IDs and, if applicable, test methods to run; default is all tests.",
|
|
683
|
+
"delimiter": ",",
|
|
684
|
+
"hasDynamicHelp": false,
|
|
685
|
+
"multiple": true,
|
|
686
|
+
"type": "option"
|
|
687
|
+
},
|
|
688
|
+
"wait": {
|
|
689
|
+
"char": "w",
|
|
690
|
+
"name": "wait",
|
|
691
|
+
"summary": "Sets the streaming client socket timeout in minutes; specify a longer wait time if timeouts occur frequently.",
|
|
692
|
+
"hasDynamicHelp": false,
|
|
693
|
+
"multiple": false,
|
|
694
|
+
"type": "option"
|
|
695
|
+
},
|
|
696
|
+
"synchronous": {
|
|
697
|
+
"char": "y",
|
|
698
|
+
"name": "synchronous",
|
|
699
|
+
"summary": "Runs test methods from a single Apex class synchronously; if not specified, tests are run asynchronously.",
|
|
700
|
+
"allowNo": false,
|
|
701
|
+
"type": "boolean"
|
|
702
|
+
},
|
|
703
|
+
"detailed-coverage": {
|
|
704
|
+
"aliases": [
|
|
705
|
+
"detailedcoverage"
|
|
706
|
+
],
|
|
707
|
+
"char": "v",
|
|
708
|
+
"dependsOn": [
|
|
709
|
+
"code-coverage"
|
|
710
|
+
],
|
|
711
|
+
"deprecateAliases": true,
|
|
712
|
+
"name": "detailed-coverage",
|
|
713
|
+
"summary": "Display detailed code coverage per test.",
|
|
714
|
+
"allowNo": false,
|
|
715
|
+
"type": "boolean"
|
|
716
|
+
}
|
|
717
|
+
},
|
|
718
|
+
"hasDynamicHelp": true,
|
|
719
|
+
"hiddenAliases": [],
|
|
720
|
+
"id": "apex:run:test",
|
|
721
|
+
"pluginAlias": "@salesforce/plugin-apex",
|
|
722
|
+
"pluginName": "@salesforce/plugin-apex",
|
|
723
|
+
"pluginType": "core",
|
|
724
|
+
"strict": true,
|
|
725
|
+
"summary": "Invoke Apex tests in an org.",
|
|
726
|
+
"enableJsonFlag": true,
|
|
727
|
+
"isESM": true,
|
|
728
|
+
"relativePath": [
|
|
729
|
+
"lib",
|
|
730
|
+
"commands",
|
|
731
|
+
"apex",
|
|
732
|
+
"run",
|
|
733
|
+
"test.js"
|
|
734
|
+
],
|
|
735
|
+
"aliasPermutations": [
|
|
736
|
+
"force:apex:test:run",
|
|
737
|
+
"apex:force:test:run",
|
|
738
|
+
"apex:test:force:run",
|
|
739
|
+
"apex:test:run:force",
|
|
740
|
+
"force:test:apex:run",
|
|
741
|
+
"test:force:apex:run",
|
|
742
|
+
"test:apex:force:run",
|
|
743
|
+
"test:apex:run:force",
|
|
744
|
+
"force:test:run:apex",
|
|
745
|
+
"test:force:run:apex",
|
|
746
|
+
"test:run:force:apex",
|
|
747
|
+
"test:run:apex:force",
|
|
748
|
+
"force:apex:run:test",
|
|
749
|
+
"apex:force:run:test",
|
|
750
|
+
"apex:run:force:test",
|
|
751
|
+
"apex:run:test:force",
|
|
752
|
+
"force:run:apex:test",
|
|
753
|
+
"run:force:apex:test",
|
|
754
|
+
"run:apex:force:test",
|
|
755
|
+
"run:apex:test:force",
|
|
756
|
+
"force:run:test:apex",
|
|
757
|
+
"run:force:test:apex",
|
|
758
|
+
"run:test:force:apex",
|
|
759
|
+
"run:test:apex:force"
|
|
760
|
+
],
|
|
761
|
+
"permutations": [
|
|
762
|
+
"apex:run:test",
|
|
763
|
+
"run:apex:test",
|
|
764
|
+
"run:test:apex",
|
|
765
|
+
"apex:test:run",
|
|
766
|
+
"test:apex:run",
|
|
767
|
+
"test:run:apex"
|
|
768
|
+
]
|
|
769
|
+
},
|
|
770
770
|
"apex:tail:log": {
|
|
771
771
|
"aliases": [
|
|
772
772
|
"force:apex:log:tail"
|
|
@@ -903,5 +903,5 @@
|
|
|
903
903
|
]
|
|
904
904
|
}
|
|
905
905
|
},
|
|
906
|
-
"version": "3.0.
|
|
906
|
+
"version": "3.0.19"
|
|
907
907
|
}
|
package/package.json
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-apex",
|
|
3
3
|
"description": "Apex commands",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.19",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@oclif/core": "^3.16.0",
|
|
9
|
-
"@salesforce/apex-node": "^3.0.
|
|
9
|
+
"@salesforce/apex-node": "^3.0.2",
|
|
10
10
|
"@salesforce/core": "^6.4.4",
|
|
11
11
|
"@salesforce/kit": "^3.0.15",
|
|
12
|
-
"@salesforce/sf-plugins-core": "^7.
|
|
12
|
+
"@salesforce/sf-plugins-core": "^7.1.2",
|
|
13
13
|
"chalk": "^5.3.0",
|
|
14
14
|
"color-convert": "^2.0.1",
|
|
15
15
|
"color-name": "^2.0.0"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@oclif/plugin-command-snapshot": "^5.0.
|
|
18
|
+
"@oclif/plugin-command-snapshot": "^5.0.6",
|
|
19
19
|
"@salesforce/cli-plugins-testkit": "^5.1.4",
|
|
20
|
-
"@salesforce/dev-scripts": "^8.
|
|
21
|
-
"@salesforce/plugin-command-reference": "^3.0.
|
|
20
|
+
"@salesforce/dev-scripts": "^8.3.0",
|
|
21
|
+
"@salesforce/plugin-command-reference": "^3.0.62",
|
|
22
22
|
"@types/color-convert": "^2.0.3",
|
|
23
23
|
"eslint-plugin-sf-plugin": "^1.17.1",
|
|
24
|
-
"oclif": "^4.1
|
|
24
|
+
"oclif": "^4.3.1",
|
|
25
25
|
"shx": "^0.3.4",
|
|
26
26
|
"ts-node": "^10.9.2",
|
|
27
27
|
"typescript": "^5.2.2"
|
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
"exports": "./lib/index.js",
|
|
225
225
|
"type": "module",
|
|
226
226
|
"sfdx": {
|
|
227
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.0.
|
|
228
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.0.
|
|
227
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.0.19.crt",
|
|
228
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.0.19.sig"
|
|
229
229
|
}
|
|
230
230
|
}
|