@salesforce/plugin-apex 2.2.11 → 2.2.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.
@@ -5,8 +5,11 @@ Invoke Apex tests in an org.
5
5
  # description
6
6
 
7
7
  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.
8
+
8
9
  To 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.
9
10
 
11
+ Apex tests run asynchronously by default. The command waits for 1 minute (default), or for the value of the --wait flag; if the tests have finished, 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.
12
+
10
13
  NOTE: 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.
11
14
 
12
15
  # examples
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.2.11",
2
+ "version": "2.2.13",
3
3
  "commands": {
4
4
  "apex:run": {
5
5
  "id": "apex:run",
@@ -353,7 +353,7 @@
353
353
  "apex:run:test": {
354
354
  "id": "apex:run:test",
355
355
  "summary": "Invoke Apex tests in an org.",
356
- "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.\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\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.",
356
+ "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\nApex tests run asynchronously by default. The command waits for 1 minute (default), or for the value of the --wait flag; if the tests have finished, 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.",
357
357
  "strict": true,
358
358
  "pluginName": "@salesforce/plugin-apex",
359
359
  "pluginAlias": "@salesforce/plugin-apex",
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-apex",
3
3
  "description": "Apex commands",
4
- "version": "2.2.11",
4
+ "version": "2.2.13",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "main": "lib/index.js",
8
8
  "dependencies": {
9
- "@oclif/core": "^2.4.0",
9
+ "@oclif/core": "^2.8.2",
10
10
  "@salesforce/apex-node": "^1.6.0",
11
11
  "@salesforce/core": "^3.34.5",
12
12
  "@salesforce/sf-plugins-core": "^2.2.7",
@@ -17,16 +17,16 @@
17
17
  "@oclif/plugin-command-snapshot": "^3.3.10",
18
18
  "@oclif/plugin-help": "^5",
19
19
  "@salesforce/dev-config": "3.1.0",
20
- "@salesforce/dev-scripts": "^4.1.3",
20
+ "@salesforce/dev-scripts": "^4.3.0",
21
21
  "@salesforce/plugin-command-reference": "^2.4.1",
22
22
  "@salesforce/prettier-config": "^0.0.2",
23
23
  "@salesforce/ts-sinon": "^1.4.4",
24
24
  "@salesforce/ts-types": "1.7.3",
25
25
  "@swc/core": "^1.3.44",
26
- "@typescript-eslint/eslint-plugin": "^5.57.0",
26
+ "@typescript-eslint/eslint-plugin": "^5.57.1",
27
27
  "@typescript-eslint/parser": "^5.56.0",
28
28
  "chai": "^4.2.0",
29
- "eslint": "^8.36.0",
29
+ "eslint": "^8.38.0",
30
30
  "eslint-config-prettier": "^8.8.0",
31
31
  "eslint-config-salesforce": "^1.1.0",
32
32
  "eslint-config-salesforce-license": "^0.2.0",
@@ -229,7 +229,7 @@
229
229
  }
230
230
  },
231
231
  "sfdx": {
232
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/2.2.11.crt",
233
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/2.2.11.sig"
232
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/2.2.13.crt",
233
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/2.2.13.sig"
234
234
  }
235
235
  }