Skip to content

Commit 74a64d4

Browse files
chore: bump salesforce-apex lib
1 parent ae53e7d commit 74a64d4

File tree

4 files changed

+3267
-3076
lines changed

4 files changed

+3267
-3076
lines changed

package.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {
8-
"@salesforce/apex-node": "^8.1.27",
8+
"@salesforce/apex-node": "^8.3.1",
99
"@salesforce/core": "^8.10.1",
1010
"@salesforce/kit": "^3.2.3",
1111
"@salesforce/sf-plugins-core": "^12.2.1",
@@ -66,6 +66,14 @@
6666
"description": "Tail debug logs."
6767
}
6868
}
69+
},
70+
"logic": {
71+
"description": "Use the logic commands to run Apex tests and view Apex test results.",
72+
"subtopics": {
73+
"get": {
74+
"description": "Get debug logs or test results."
75+
}
76+
}
6977
}
7078
},
7179
"devPlugins": [
@@ -205,7 +213,7 @@
205213
"output": []
206214
},
207215
"link-check": {
208-
"command": "node -e \"process.exit(process.env.CI ? 0 : 1)\" || linkinator \"**/*.md\" --skip \"CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|my.salesforce.com|%s\" --markdown --retry --directory-listing --verbosity error",
216+
"command": "node -e \"process.exit(process.env.CI ? 0 : 1)\" || linkinator \"**/*.md\" --skip \"CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|my.salesforce.com|localhost|%s\" --markdown --retry --directory-listing --verbosity error",
209217
"files": [
210218
"./*.md",
211219
"./!(CHANGELOG).md",

src/commands/apex/get/test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ export default class Test extends SfCommand<RunResult> {
5959
public async run(): Promise<RunResult> {
6060
const { flags } = await this.parse(Test);
6161

62-
// Use shared business logic
6362
return TestGetBase.execute({
6463
connection: flags['target-org'].getConnection(flags['api-version']),
6564
testRunId: flags['test-run-id'],
@@ -69,7 +68,7 @@ export default class Test extends SfCommand<RunResult> {
6968
json: flags.json,
7069
detailedCoverage: flags['detailed-coverage'],
7170
concise: flags.concise,
72-
jsonEnabled: this.jsonEnabled()
71+
jsonEnabled: this.jsonEnabled(),
7372
});
7473
}
7574
}

src/commands/logic/get/test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,12 @@ export default class Test extends SfCommand<RunResult> {
5454
'result-format': resultFormatFlag,
5555
concise: Flags.boolean({
5656
summary: messages.getMessage('flags.concise.summary'),
57-
})
57+
}),
5858
};
5959

6060
public async run(): Promise<RunResult> {
6161
const { flags } = await this.parse(Test);
6262

63-
// Use shared business logic
6463
return TestGetBase.execute({
6564
connection: flags['target-org'].getConnection(),
6665
testRunId: flags['test-run-id'],
@@ -71,7 +70,7 @@ export default class Test extends SfCommand<RunResult> {
7170
detailedCoverage: false,
7271
concise: flags.concise,
7372
jsonEnabled: this.jsonEnabled(),
74-
isUnifiedLogic: true
73+
isUnifiedLogic: true,
7574
});
7675
}
7776
}

0 commit comments

Comments
 (0)