@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 +1 -1
- package/src/Executor.mjs +1 -1
- package/src/FlowExecutor.mjs +1 -1
package/package.json
CHANGED
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.
|
|
50
|
+
const base64pk = process.env.KEEL_PRIVATE_KEY;
|
|
51
51
|
let privateKey = undefined;
|
|
52
52
|
|
|
53
53
|
if (base64pk) {
|
package/src/FlowExecutor.mjs
CHANGED
|
@@ -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.
|
|
34
|
+
const base64pk = process.env.KEEL_PRIVATE_KEY;
|
|
35
35
|
let privateKey = undefined;
|
|
36
36
|
|
|
37
37
|
if (base64pk) {
|