Skip to content

Commit 88f1538

Browse files
Release v1.4.5 (#99)
Utils: Error Code additions specific to the manager and addition of sfProvarResult.ts to be extended further by other command specific result classes. Automation: Changes specific to shows logs to console by default for automation test run command Manager: Manager test run abort command. Aborts the test run started by test run command by specifying the uuid/externalId
1 parent ffe1e4f commit 88f1538

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@provartesting/provardx-cli",
33
"description": "A plugin for the Salesforce CLI to orchestrate testing activities and report quality metrics to Provar Manager",
4-
"version": "1.4.2",
4+
"version": "1.4.6",
55
"license": "BSD-3-Clause",
66
"plugins": [
77
"@provartesting/provardx-plugins-automation",
@@ -18,9 +18,9 @@
1818
"fast-xml-parser": "^4.3.6",
1919
"jsonschema": "^1.4.1",
2020
"node-stream-zip": "^1.15.0",
21-
"@provartesting/provardx-plugins-utils": "1.2.0",
22-
"@provartesting/provardx-plugins-automation": "1.1.0",
23-
"@provartesting/provardx-plugins-manager": "1.2.1",
21+
"@provartesting/provardx-plugins-utils": "1.3.1",
22+
"@provartesting/provardx-plugins-automation": "1.2.1",
23+
"@provartesting/provardx-plugins-manager": "1.3.1",
2424
"sync-request": "^6.1.0",
2525
"xml-js": "^1.6.11"
2626
},

src/commands/provar/automation/config/set.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default class SfProvarConfigSet extends SfCommand<SfProvarCommandResult>
6868
}
6969
}
7070
if (this.errorHandler.getErrors().length == 0) {
71-
fileSystem.writeFileSync(propertiesFilePath, JSON.stringify(propertyFileContent, null, 3));
71+
fileSystem.writeFileSync(propertiesFilePath, JSON.stringify(propertyFileContent, null, 4));
7272
}
7373
} catch (err: any) {
7474
if (err.name === 'InvalidArgumentFormatError') {

src/commands/provar/config/set.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export default class SfProvarConfigSet extends SfCommand<SfProvarCommandResult>
8181
}
8282
}
8383
if (this.errorHandler.getErrors().length == 0) {
84-
fileSystem.writeFileSync(propertiesFilePath, JSON.stringify(propertyFileContent, null, 3));
84+
fileSystem.writeFileSync(propertiesFilePath, JSON.stringify(propertyFileContent, null, 4));
8585
}
8686
} catch (err: any) {
8787
if (err.name === 'InvalidArgumentFormatError') {

0 commit comments

Comments
 (0)