@salesforce/plugin-agent 1.4.0 → 1.5.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 +67 -12
- package/lib/commands/agent/preview.d.ts +15 -0
- package/lib/commands/agent/preview.js +37 -0
- package/lib/commands/agent/preview.js.map +1 -0
- package/lib/commands/agent/test/results.d.ts +2 -1
- package/lib/commands/agent/test/results.js +11 -5
- package/lib/commands/agent/test/results.js.map +1 -1
- package/lib/commands/agent/test/resume.d.ts +2 -1
- package/lib/commands/agent/test/resume.js +11 -5
- package/lib/commands/agent/test/resume.js.map +1 -1
- package/lib/commands/agent/test/run.d.ts +2 -1
- package/lib/commands/agent/test/run.js +11 -5
- package/lib/commands/agent/test/run.js.map +1 -1
- package/lib/components/agent-preview-react.d.ts +9 -0
- package/lib/components/agent-preview-react.js +56 -0
- package/lib/components/agent-preview-react.js.map +1 -0
- package/lib/flags.d.ts +5 -1
- package/lib/flags.js +6 -1
- package/lib/flags.js.map +1 -1
- package/lib/handleTestResults.d.ts +8 -0
- package/lib/handleTestResults.js +44 -0
- package/lib/handleTestResults.js.map +1 -0
- package/messages/agent.preview.md +20 -0
- package/messages/shared.md +8 -0
- package/npm-shrinkwrap.json +12285 -5604
- package/oclif.lock +821 -12
- package/oclif.manifest.json +102 -4
- package/package.json +13 -5
- package/schemas/agent-preview.json +9 -0
package/messages/shared.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
1
|
# flags.result-format.summary
|
|
2
2
|
|
|
3
3
|
Format of the test run results.
|
|
4
|
+
|
|
5
|
+
# flags.output-dir.summary
|
|
6
|
+
|
|
7
|
+
Directory to write the test results to.
|
|
8
|
+
|
|
9
|
+
# flags.output-dir.description
|
|
10
|
+
|
|
11
|
+
If test run is complete, write the results to the specified directory. If the tests are still running, the test results will not be written.
|