We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 844628f commit d1541d1Copy full SHA for d1541d1
2 files changed
tools/sfdx/plugin.yaml
@@ -0,0 +1,12 @@
1
+version: 0.1
2
+tools:
3
+ definitions:
4
+ - name: sfdx
5
+ runtime: node
6
+ package: "@salesforce/cli"
7
+ known_good_version: 2.0.1
8
+ shims:
9
10
+ target: sfdx
11
+ - name: sf
12
+ target: sf
tools/sfdx/sfdx.test.ts
@@ -0,0 +1,16 @@
+import { makeToolTestConfig, toolTest } from "tests";
+
+toolTest({
+ toolName: "sfdx",
+ toolVersion: "2.0.1",
+ testConfigs: [
+ makeToolTestConfig({
+ command: ["sfdx", "--version"],
+ expectedOut: "2.0.1",
+ }),
+ command: ["sf", "--version"],
13
14
15
+ ],
16
+});
0 commit comments