File tree 2 files changed +5
-2
lines changed
apps/velo-external-db/test
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ export let env: E2E_ENV = {
22
22
app : Uninitialized ,
23
23
internals : Uninitialized ,
24
24
externalDbRouter : Uninitialized ,
25
- capabilities : Uninitialized
25
+ capabilities : Uninitialized ,
26
+ enviormentVariables : Uninitialized ,
26
27
}
27
28
28
29
const createAppWithWixDataBaseUrl = createApp . bind ( null , wixDataBaseUrl ( ) )
@@ -51,6 +52,7 @@ export const currentDbImplementationName = () => testedSuit().currentDbImplement
51
52
export const initApp = async ( ) => {
52
53
env = await testedSuit ( ) . initApp ( )
53
54
env . capabilities = testedSuit ( ) . implementation . capabilities
55
+ env . enviormentVariables = testedSuit ( ) . implementation . enviormentVariables
54
56
}
55
57
export const teardownApp = async ( ) => {
56
58
await testedSuit ( ) . teardownApp ( )
Original file line number Diff line number Diff line change @@ -39,7 +39,8 @@ export interface E2E_ENV {
39
39
app : App
40
40
externalDbRouter : ExternalDbRouter
41
41
internals : Internals
42
- capabilities : Capabilities
42
+ capabilities : Capabilities ,
43
+ enviormentVariables : { [ key : string ] : string }
43
44
}
44
45
45
46
export interface ProviderResourcesEnv {
You can’t perform that action at this time.
0 commit comments