@salesforce/cli 2.114.5-dev.1 → 2.115.0
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 +1 -1
- package/dist/hooks/preparse.js +18 -1
- package/npm-shrinkwrap.json +1602 -1505
- package/oclif.lock +765 -663
- package/oclif.manifest.json +2 -2
- package/package.json +6 -7
package/oclif.manifest.json
CHANGED
|
@@ -2939,7 +2939,7 @@
|
|
|
2939
2939
|
"flow:run:test": {
|
|
2940
2940
|
"aliases": [],
|
|
2941
2941
|
"args": {},
|
|
2942
|
-
"description": "Specify which tests to run by using the --class-names flag followed by the names of the flows you want to test. For example, if you save a flow with the name Flow1, then use: --class-names Flow1.\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, \"flow run test\" runs asynchronously and immediately returns a test run ID. If you use the -–synchronous flag, 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 \"flow get test --test-run-id\" command to get the results.\n\nYou must have the \"View All Data\" org system permission to use this command. The permission is disabled by default and can be enabled only by a system administrator.",
|
|
2942
|
+
"description": "Specify which tests to run by using the --class-names flag followed by the names of the flows you want to test. For example, if you save a flow with the name Flow1, then use: --class-names Flow1.\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, \"flow run test\" runs asynchronously and immediately returns a test run ID. If you use the -–synchronous flag, 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 \"flow get test --test-run-id\" command to get the results.\n\nTo run both Flow and Apex tests together, run the \"sf logic run test\" CLI command, which has similar flags as this command, but expands the --tests flag to also include Apex tests.\n\nYou must have the \"View All Data\" org system permission to use this command. The permission is disabled by default and can be enabled only by a system administrator.",
|
|
2943
2943
|
"examples": [
|
|
2944
2944
|
"Run all local tests in your default org:\n<%= config.bin %> <%= command.id %> --test-level RunLocalTests",
|
|
2945
2945
|
"Run all the Flow1 and Flow2 flow tests in the org with alias “scratchOrg”:\n<%= config.bin %> <%= command.id %> --target-org scratchOrg --class-names Flow1 --class-names Flow2",
|
|
@@ -4180,5 +4180,5 @@
|
|
|
4180
4180
|
"requiresProject": true
|
|
4181
4181
|
}
|
|
4182
4182
|
},
|
|
4183
|
-
"version": "2.
|
|
4183
|
+
"version": "2.115.0"
|
|
4184
4184
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.115.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"@salesforce/plugin-custom-metadata": "3.3.70",
|
|
82
82
|
"@salesforce/plugin-dev": "2.5.1",
|
|
83
83
|
"@salesforce/plugin-devops-center": "1.2.27",
|
|
84
|
-
"@salesforce/plugin-flow": "1.0.
|
|
84
|
+
"@salesforce/plugin-flow": "1.0.4",
|
|
85
85
|
"@salesforce/plugin-signups": "2.6.54",
|
|
86
86
|
"@salesforce/sfdx-plugin-lwc-test": "1.2.1"
|
|
87
87
|
},
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
"@oclif/plugin-version": "2.2.36",
|
|
156
156
|
"@oclif/plugin-warn-if-update-available": "3.1.53",
|
|
157
157
|
"@oclif/plugin-which": "3.2.42",
|
|
158
|
-
"@salesforce/core": "8.
|
|
158
|
+
"@salesforce/core": "^8.9.1",
|
|
159
159
|
"@salesforce/kit": "^3.1.6",
|
|
160
160
|
"@salesforce/plugin-agent": "1.24.29",
|
|
161
161
|
"@salesforce/plugin-apex": "3.8.8",
|
|
@@ -211,8 +211,7 @@
|
|
|
211
211
|
"@salesforce/plugin-user"
|
|
212
212
|
],
|
|
213
213
|
"resolutions": {
|
|
214
|
-
"@salesforce/schemas": "1.10.3"
|
|
215
|
-
"jwa": "1.4.2"
|
|
214
|
+
"@salesforce/schemas": "1.10.3"
|
|
216
215
|
},
|
|
217
216
|
"repository": "salesforcecli/cli",
|
|
218
217
|
"scripts": {
|
|
@@ -257,13 +256,13 @@
|
|
|
257
256
|
"types": "dist/index.d.ts",
|
|
258
257
|
"devDependencies": {
|
|
259
258
|
"@oclif/plugin-command-snapshot": "^5.2.3",
|
|
260
|
-
"@oclif/test": "^4.1.
|
|
259
|
+
"@oclif/test": "^4.1.15",
|
|
261
260
|
"@salesforce/dev-scripts": "^11.0.2",
|
|
262
261
|
"@salesforce/plugin-release-management": "^5.7.0",
|
|
263
262
|
"@salesforce/ts-sinon": "^1.4.31",
|
|
264
263
|
"@salesforce/ts-types": "^2.0.11",
|
|
265
264
|
"aws-sdk": "^2.1692.0",
|
|
266
|
-
"oclif": "^4.22.
|
|
265
|
+
"oclif": "^4.22.47",
|
|
267
266
|
"ts-node": "^10.9.2",
|
|
268
267
|
"typescript": "^5.9.3"
|
|
269
268
|
},
|