@teamkeel/testing-runtime 0.428.2 → 0.429.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamkeel/testing-runtime",
3
- "version": "0.428.2",
3
+ "version": "0.429.1",
4
4
  "description": "Internal package used by the generated @teamkeel/testing package",
5
5
  "exports": "./src/index.mjs",
6
6
  "typings": "src/index.d.ts",
package/src/Executor.mjs CHANGED
@@ -47,7 +47,7 @@ export class Executor {
47
47
 
48
48
  // An Identity instance is provided make a JWT
49
49
  if (this._identity !== null) {
50
- const base64pk = process.env.KEEL_DEFAULT_PK;
50
+ const base64pk = process.env.KEEL_PRIVATE_KEY;
51
51
  let privateKey = undefined;
52
52
 
53
53
  if (base64pk) {
@@ -31,7 +31,7 @@ export class FlowExecutor {
31
31
 
32
32
  // An Identity instance is provided make a JWT
33
33
  if (this._identity !== null) {
34
- const base64pk = process.env.KEEL_DEFAULT_PK;
34
+ const base64pk = process.env.KEEL_PRIVATE_KEY;
35
35
  let privateKey = undefined;
36
36
 
37
37
  if (base64pk) {