sf-delta-tests 0.0.7 → 0.0.8
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 +4 -2
- package/lib/commands/delta/test-classes.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ This repository provides a template for creating a plugin for the Salesforce CLI
|
|
|
24
24
|
|
|
25
25
|
Salesforce CLI plugins are based on the [oclif plugin framework](<(https://oclif.io/docs/introduction.html)>). Read the [plugin developer guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_plugins.meta/sfdx_cli_plugins/cli_plugins_architecture_sf_cli.htm) to learn about Salesforce CLI plugin development.
|
|
26
26
|
|
|
27
|
-
This repository contains a lot of additional scripts and tools to help with general Salesforce node development and enforce coding standards. You should familiarize yourself with some of the [node developer packages](#tooling) used by Salesforce.
|
|
27
|
+
This repository contains a lot of additional scripts and tools to help with general Salesforce node development and enforce coding standards. You should familiarize yourself with some of the [node developer packages](#tooling) used by Salesforce.
|
|
28
28
|
|
|
29
29
|
Additionally, there are some additional tests that the Salesforce CLI will enforce if this plugin is ever bundled with the CLI. These test are included by default under the `posttest` script and it is required to keep these tests active in your plugin if you plan to have it bundled.
|
|
30
30
|
|
|
@@ -110,7 +110,8 @@ sf plugins
|
|
|
110
110
|
## Commands
|
|
111
111
|
|
|
112
112
|
<!-- commands -->
|
|
113
|
-
|
|
113
|
+
|
|
114
|
+
- [`sf delta test-classes`](#sf-delta-test-classes)
|
|
114
115
|
|
|
115
116
|
## `sf delta test-classes`
|
|
116
117
|
|
|
@@ -141,4 +142,5 @@ FLAG DESCRIPTIONS
|
|
|
141
142
|
|
|
142
143
|
More information about a flag. Don't repeat the summary.
|
|
143
144
|
```
|
|
145
|
+
|
|
144
146
|
<!-- commandsstop -->
|
|
@@ -25,7 +25,7 @@ class TestClasses extends sf_plugins_core_1.SfCommand {
|
|
|
25
25
|
const results = this.dependencyService.getRelatedApexClasses(combinedApexClassData, changedMetadata);
|
|
26
26
|
const testFiles = await this.apexClassService.filterApexTest(results);
|
|
27
27
|
const simpleTestFiles = this.apexClassService.filterApexTestSimple(results);
|
|
28
|
-
this.log(simpleTestFiles.join('
|
|
28
|
+
this.log(simpleTestFiles.join(' '));
|
|
29
29
|
return {
|
|
30
30
|
testFiles,
|
|
31
31
|
};
|
package/oclif.manifest.json
CHANGED