Skip to content

Commit 3f9dcac

Browse files
authored
Merge pull request #93 from salesforcecli/dependabot-npm_and_yarn-salesforce-apex-node-8.3.4
fix(deps): bump @salesforce/apex-node from 8.1.20 to 8.3.4
2 parents 85a6319 + 5a74462 commit 3f9dcac

File tree

3 files changed

+193
-225
lines changed

3 files changed

+193
-225
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "1.0.2",
55
"dependencies": {
66
"@oclif/core": "^4.2.10",
7-
"@salesforce/apex-node": "^8.1.20",
7+
"@salesforce/apex-node": "^8.3.4",
88
"@salesforce/core": "^8.8.6",
99
"@salesforce/kit": "^3.2.3",
1010
"@salesforce/sf-plugins-core": "^12.2.1",

test/commands/flow/run/test.test.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,8 @@ describe('flow:test:run', () => {
282282
testLevel: 'RunSpecifiedTests',
283283
tests: [
284284
{
285-
className: 'flowtesting.MyFlowTests',
285+
namespace: 'flowtesting',
286+
className: 'MyFlowTests',
286287
testMethods: ['test1', 'test2'],
287288
},
288289
],
@@ -312,7 +313,7 @@ describe('flow:test:run', () => {
312313

313314
await FlowRunTest.run(['--suite-names', 'MyFlowTest1,MyFlowTest2', '--result-format', 'human']);
314315
expect(flowStub.firstCall.args[0]).to.deep.equal({
315-
category: FLOW_CATEGORY,
316+
category: [FLOW_CATEGORY],
316317
skipCodeCoverage: true,
317318
testLevel: 'RunSpecifiedTests',
318319
suiteNames: 'MyFlowTest1,MyFlowTest2',
@@ -324,7 +325,7 @@ describe('flow:test:run', () => {
324325

325326
await FlowRunTest.run(['-s', 'MyFlowTest1', '-s', 'MyFlowTest2', '--result-format', 'human']);
326327
expect(flowStub.firstCall.args[0]).to.deep.equal({
327-
category: FLOW_CATEGORY,
328+
category: [FLOW_CATEGORY],
328329
skipCodeCoverage: true,
329330
testLevel: 'RunSpecifiedTests',
330331
suiteNames: 'MyFlowTest1,MyFlowTest2',

0 commit comments

Comments
 (0)