Skip to content

Commit ae1e900

Browse files
committed
chore: add .env.template and update .gitignore for testing infrastructure
1 parent 0226549 commit ae1e900

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

.env.template

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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=[email protected]
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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,9 @@ bld
5656

5757
# sf cli
5858
.sf
59-
.sfdx
59+
.sfdx
60+
61+
stdout*
62+
stderr*
63+
64+
.env

0 commit comments

Comments
 (0)