We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0226549 commit ae1e900Copy full SHA for ae1e900
2 files changed
.env.template
@@ -0,0 +1,19 @@
1
+# JWT private key
2
+TESTKIT_JWT_KEY="-----BEGIN RSA PRIVATE KEY-----
3
+FAKEPRIVATEKEY1234567890abcdefg==
4
+-----END RSA PRIVATE KEY-----"
5
+
6
+# Connected App Client ID for JWT auth
7
+TESTKIT_JWT_CLIENT_ID=FAKE_CLIENT_ID_123456
8
9
+# Username of your Dev Hub org
10
+TESTKIT_HUB_USERNAME=test-user@example.com
11
12
+# Path to the Salesforce CLI executable
13
+TESTKIT_EXECUTABLE_PATH=./node_modules/.bin/sf
14
15
+# Instance URL of your Dev Hub org
16
+TESTKIT_HUB_INSTANCE=https://fake-devhub-instance.salesforce.com
17
18
+# Prevent the dev server from opening the browser during tests
19
+OPEN_BROWSER=false
.gitignore
@@ -56,4 +56,9 @@ bld
56
57
# sf cli
58
.sf
59
-.sfdx
+.sfdx
60
61
+stdout*
62
+stderr*
63
64
+.env
0 commit comments